diff --git a/src/Applications/Applications.md b/src/Applications/Applications.md index fa68c96a06..52392a332e 100644 --- a/src/Applications/Applications.md +++ b/src/Applications/Applications.md @@ -30,4 +30,6 @@ directive: subject: ^(OnPremisePublishingProfile)(\1)+ set: subject: $1 +#Prevent paths from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0 + - remove-path-by-operation: ^application_DeleteOwnerGraphBPreRef$|^application_DeleteAppManagementPolicyGraphBPreRef$|^application_DeleteTokenIssuancePolicyGraphBPreRef$|^application_DeleteTokenLifetimePolicyGraphBPreRef$|^servicePrincipal_DeleteClaimsMappingPolicyGraphBPreRef$|^servicePrincipal_DeleteHomeRealmDiscoveryPolicyGraphBPreRef$|^servicePrincipal_DeleteOwnerGraphBPreRef$|^onPremisesPublishingProfile.agentGroup.agent_DeleteAgentGroupGraphBPreRef$|^onPremisesPublishingProfile.connectorGroup_DeleteMemberGraphBPreRef$|^onPremisesPublishingProfile.connector_ListMemberGraphOPreGraphBPreRef$|^onPremisesPublishingProfile.publishedResource_DeleteAgentGroupGraphBPreRef$|^onPremisesPublishingProfile.agentGroup.publishedResource_DeleteAgentGroupGraphBPreRef$ ``` diff --git a/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs b/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs index 86ebdad20c..d211b0c2aa 100644 --- a/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs +++ b/src/Authentication/Authentication/Cmdlets/InvokeMgGraphRequest.cs @@ -402,7 +402,8 @@ private Uri PrepareUri(HttpClient httpClient, Uri uri) // set body to null to prevent later FillRequestStream Body = null; } - return uriBuilder.Uri.EscapeDataStrings(); + //Review fix made in https://github.com/microsoftgraph/msgraph-sdk-powershell/pull/2690 + return uriBuilder.Uri; } private void ThrowIfError(ErrorRecord error) diff --git a/src/Authentication/Authentication/Models/GraphCommand.cs b/src/Authentication/Authentication/Models/GraphCommand.cs index 521f2f58e6..cab2a50787 100644 --- a/src/Authentication/Authentication/Models/GraphCommand.cs +++ b/src/Authentication/Authentication/Models/GraphCommand.cs @@ -38,6 +38,14 @@ public interface IGraphCommand /// string[] Variants { get; set; } /// + /// Command Alias. + /// + string CommandAlias { get; set ; } + /// + /// The response type of the command. + /// + string ApiReferenceLink { get; set; } + /// /// The permissions needed to use the command. /// GraphPermission[] Permissions { get; set; } @@ -84,6 +92,10 @@ public class GraphCommand : IGraphCommand /// The permissions needed to use the command. /// public GraphPermission[] Permissions { get; set; } + /// + /// Command Alias. + /// + public string CommandAlias { get; set ; } } /// diff --git a/src/Authentication/Authentication/custom/Find-MgGraphCommand.ps1 b/src/Authentication/Authentication/custom/Find-MgGraphCommand.ps1 index 9f7e666665..43f53d1445 100644 --- a/src/Authentication/Authentication/custom/Find-MgGraphCommand.ps1 +++ b/src/Authentication/Authentication/custom/Find-MgGraphCommand.ps1 @@ -82,7 +82,7 @@ Function Find-MgGraphCommand { Write-Debug "Matching ApiVersion: $ApiVersion" [Microsoft.Graph.PowerShell.Authentication.GraphSession]::Instance.MgCommandMetadata | ForEach-Object { if ($_.ApiVersion -match $ApiVersion -and - $_.Command -match "^$c$") { + $_.Command -match "^$c$" -or $_.CommandAlias -match "^$c$") { $Result += [Microsoft.Graph.PowerShell.Authentication.Models.GraphCommand]$_ } } diff --git a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json index 88116c9647..63850950e8 100644 --- a/src/Authentication/Authentication/custom/common/MgCommandMetadata.json +++ b/src/Authentication/Authentication/custom/common/MgCommandMetadata.json @@ -1,6 +1,18 @@ [ { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgApplicationKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0", "Uri": "/applications/{application-id}/addKey", + "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -27,21 +39,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Add-MgApplicationKey", + "OutputType": "IMicrosoftGraphKeyCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgApplicationPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/addPassword", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphKeyCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-1.0" - }, - { - "Uri": "/applications/{application-id}/addPassword", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -68,21 +81,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Add-MgApplicationPassword", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPasswordCredential" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaAccessReviewDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta", "Uri": "/accessReviews/{accessReview-id}/applyDecisions", + "ApiVersion": "beta", + "Variants": [ + "Apply", + "ApplyViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -101,33 +113,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Add-MgBetaAccessReviewDecision", - "Variants": [ - "Apply", - "ApplyViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/applyDecisions", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-apply?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaApplicationKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-beta", "Uri": "/applications/{application-id}/addKey", + "ApiVersion": "beta", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -154,21 +170,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Add-MgBetaApplicationKey", + "OutputType": "IMicrosoftGraphKeyCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaApplicationPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-beta", + "Uri": "/applications/{application-id}/addPassword", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addkey?view=graph-rest-beta" - }, - { - "Uri": "/applications/{application-id}/addPassword", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -195,37 +212,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Add-MgBetaApplicationPassword", + "OutputType": "IMicrosoftGraphPasswordCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaChatMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-addpassword?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/chats/{chat-id}/members/add", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "Add-MgBetaChatMember", + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaCommunicationCallLargeGalleryView", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/addLargeGalleryView", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" - }, - { - "Uri": "/communications/calls/{call-id}/addLargeGalleryView", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -252,24 +271,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Add-MgBetaCommunicationCallLargeGalleryView", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/applyHold", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseCustodianHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/applyHold", + "ApiVersion": "beta", "Variants": [ "Apply", "Apply1", @@ -278,16 +288,17 @@ "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/applyHold", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/applyHold", + "ApiVersion": "beta", "Variants": [ "Apply", "Apply1", @@ -296,13 +307,24 @@ "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-applytags?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}/applyTags", + "ApiVersion": "beta", + "Variants": [ + "Apply", + "ApplyExpanded", + "ApplyViaIdentity", + "ApplyViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -321,21 +343,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetQueryTag", - "Variants": [ - "Apply", - "ApplyExpanded", - "ApplyViaIdentity", - "ApplyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewsetquery-applytags?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-addtoreviewset?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/addToReviewSet", + "ApiVersion": "beta", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -354,299 +377,320 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Add-MgBetaComplianceEdiscoveryCaseReviewSetToReviewSet", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-addtoreviewset?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/addApps", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/addApps", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/addLanguageFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/addLanguageFiles", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/apply", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/apply", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-apply?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/applyConfig", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyConfig", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/applyConfig", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-applyconfig?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/addFavorite", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupFavorite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-beta", + "Uri": "/groups/{group-id}/addFavorite", + "ApiVersion": "beta", "Variants": [ "Add", "AddViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/add", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupSiteContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupSiteContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupSiteListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupSiteListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaGroupToLifecyclePolicy", + "ApiReferenceLink": null, + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/applyDecisions", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold", + "ApiVersion": "beta", + "Variants": [ + "Apply", + "Apply1", + "ApplyExpanded", + "ApplyViaIdentity", + "ApplyViaIdentity1", + "ApplyViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -665,8 +709,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold", + "ApiVersion": "beta", "Variants": [ "Apply", "Apply1", @@ -675,13 +726,7 @@ "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -700,23 +745,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags", + "ApiVersion": "beta", "Variants": [ "Apply", - "Apply1", "ApplyExpanded", "ApplyViaIdentity", - "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -735,21 +779,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryTag", - "Variants": [ - "Apply", - "ApplyExpanded", - "ApplyViaIdentity", - "ApplyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet", + "ApiVersion": "beta", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -768,21 +813,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Add-MgBetaSecurityCaseEdiscoveryCaseReviewSetToReviewSet", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaServicePrincipalTokenSigningCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -809,83 +855,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Add-MgBetaServicePrincipalTokenSigningCertificate", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSelfSignedCertificate", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSelfSignedCertificate" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaShareListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaShareListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/add", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", + "Uri": "/sites/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaSiteContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSiteContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -904,21 +955,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Add-MgBetaSiteContentTypeCopyFromContentTypeHub", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSiteListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -937,21 +989,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Add-MgBetaSiteListContentTypeCopy", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgBetaSiteListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -970,355 +1023,377 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Add-MgBetaSiteListContentTypeCopyFromContentTypeHub", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTeamChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teams/{team-id}/members/add", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTeamMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/teams/{team-id}/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/add", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/addUserInputLog", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTenantRelationshipManagedTenantAlertUserInputLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/addUserInputLog", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}/apply", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managementaction-apply?view=graph-rest-beta", + "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}/apply", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyExpanded", "ApplyViaIdentity", "ApplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-managementaction-apply?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/add", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaUserChatMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/members/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaUserDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaUserDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/followedSites/add", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaUserFollowedSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta", + "Uri": "/users/{user-id}/followedSites/add", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/applyDecisions", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgBetaUserPendingAccessReviewInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/applyDecisions", + "ApiVersion": "beta", "Variants": [ "Apply", "ApplyViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/addMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuDeploymentAudienceExclusionMemberGraphBPreId", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuDeploymentAudienceMember", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuDeploymentAudienceMemberGraphBPreId", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesDeploymentAudienceMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuPolicyAudienceExclusionMember", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuPolicyAudienceExclusionMemberGraphBPreId", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceExclusionMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuPolicyAudienceMember", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuPolicyAudienceMemberGraphBPreId", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesPolicyAudienceMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuUpdatableAssetMember", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembers", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Add-MgBetaWuUpdatableAssetMemberGraphBPreId", + "Method": "POST", "Command": "Add-MgBetaWindowsUpdatesUpdatableAssetMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/addMembersById", + "ApiVersion": "beta", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-addmembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/members/add", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgChatMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgCommunicationCallLargeGalleryView", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/addLargeGalleryView", + "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -1345,225 +1420,241 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Add-MgCommunicationCallLargeGalleryView", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-addlargegalleryview?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAddLargeGalleryViewOperation" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/addActivities", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivityResult" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/addFavorite", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupFavorite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/addFavorite", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-addfavorite?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/add", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupSiteContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupSiteContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupSiteListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupSiteListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgGroupToLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-addgroup?view=graph-rest-1.0", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/addGroup", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-addgroup?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/applyDecisions", + "ApiVersion": "v1.0", "Variants": [ "Apply", "ApplyViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-applydecisions?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/applyHold", + "ApiVersion": "v1.0", + "Variants": [ + "Apply", + "Apply1", + "ApplyExpanded", + "ApplyViaIdentity", + "ApplyViaIdentity1", + "ApplyViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -1582,8 +1673,15 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Add-MgSecurityCaseEdiscoveryCaseCustodianHold", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold", + "ApiVersion": "v1.0", "Variants": [ "Apply", "Apply1", @@ -1592,13 +1690,7 @@ "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-applyhold?view=graph-rest-1.0" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/applyHold", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -1617,23 +1709,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Add-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags", + "ApiVersion": "v1.0", "Variants": [ "Apply", - "Apply1", "ApplyExpanded", "ApplyViaIdentity", - "ApplyViaIdentity1", "ApplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-applyhold?view=graph-rest-1.0" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/applyTags", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -1652,21 +1743,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetQueryTag", - "Variants": [ - "Apply", - "ApplyExpanded", - "ApplyViaIdentity", - "ApplyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-applytags?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/addToReviewSet", + "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -1685,21 +1777,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Add-MgSecurityCaseEdiscoveryCaseReviewSetToReviewSet", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgServicePrincipalKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/addKey", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-addtoreviewset?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/addKey", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -1726,21 +1819,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Add-MgServicePrincipalKey", + "OutputType": "IMicrosoftGraphKeyCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgServicePrincipalPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/addPassword", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphKeyCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addkey?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/addPassword", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -1767,21 +1861,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Add-MgServicePrincipalPassword", + "OutputType": "IMicrosoftGraphPasswordCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgServicePrincipalTokenSigningCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordCredential", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addpassword?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/addTokenSigningCertificate", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -1808,83 +1903,88 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Add-MgServicePrincipalTokenSigningCertificate", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSelfSignedCertificate", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-addtokensigningcertificate?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSelfSignedCertificate" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgShareListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgShareListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/add", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", + "Uri": "/sites/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/contentTypes/addCopy", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgSiteContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", "Uri": "/sites/{site-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", + "Variants": [ + "Add", + "AddExpanded", + "AddViaIdentity", + "AddViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -1903,21 +2003,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Add-MgSiteContentTypeCopyFromContentTypeHub", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSiteListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopy", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -1936,21 +2037,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Add-MgSiteListContentTypeCopy", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/addCopyFromContentTypeHub", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -1969,179 +2071,190 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Add-MgSiteListContentTypeCopyFromContentTypeHub", - "Variants": [ - "Add", - "AddExpanded", - "AddViaIdentity", - "AddViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgTeamChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teams/{team-id}/members/add", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgTeamMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/add", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgTeamPrimaryChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/add", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgUserChatMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/members/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActionResultPart", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/conversationmembers-add?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphActionResultPart" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgUserDriveListContentTypeCopy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopy", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgUserDriveListContentTypeCopyFromContentTypeHub", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/addCopyFromContentTypeHub", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-addcopyfromcontenttypehub?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/followedSites/add", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Add-MgUserFollowedSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/followedSites/add", + "ApiVersion": "v1.0", "Variants": [ "Add", "AddExpanded", "AddViaIdentity", "AddViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-follow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Approve-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/approveApps", + "ApiVersion": "beta", "Variants": [ "Approve", "ApproveExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/approve", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Approve-MgBetaDeviceManagementElevationRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/approve", + "ApiVersion": "beta", "Variants": [ "Approve", "ApproveExpanded", "ApproveViaIdentity", "ApproveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Approve-MgBetaDeviceManagementOperationApprovalRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/{operationApprovalRequest-id}/approve", + "ApiVersion": "beta", + "Variants": [ + "Approve", + "ApproveExpanded", + "ApproveViaIdentity", + "ApproveViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -2160,138 +2273,145 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Approve-MgBetaDeviceManagementOperationApprovalRequest", - "Variants": [ - "Approve", - "ApproveExpanded", - "ApproveViaIdentity", - "ApproveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/zebraFotaConnector/approveFotaApps", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Approve-MgBetaDeviceManagementZebraFotaConnectorFotaApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/zebraFotaConnector/approveFotaApps", + "ApiVersion": "beta", "Variants": [ "Approve" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/unsetVerifiedPublisher", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgApplicationVerifiedPublisher", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/unsetVerifiedPublisher", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/unsetVerifiedPublisher", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaApplicationVerifiedPublisher", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-beta", + "Uri": "/applications/{application-id}/unsetVerifiedPublisher", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-unsetverifiedpublisher?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaChatMessageReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/clearPresence", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaCommunicationPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta", + "Uri": "/communications/presences/{presence-id}/clearPresence", + "ApiVersion": "beta", "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaCommunicationPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta", + "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence", + "ApiVersion": "beta", "Variants": [ "Clear", "ClearViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/purgeData", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaComplianceEdiscoveryCaseSourceCollectionData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-purgedata?view=graph-rest-beta", + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/purgeData", + "ApiVersion": "beta", "Variants": [ "Purge", "PurgeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-purgedata?view=graph-rest-beta" + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Clear-MgBetaDeviceAppMgtWindowsInformationProtectionDeviceRegistration", + "Method": "POST", + "Command": "Clear-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}/wipe", + "ApiVersion": "beta", + "Variants": [ + "Wipe", + "WipeViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -2310,19 +2430,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Clear-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", - "Variants": [ - "Wipe", - "WipeViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", + "Variants": [ + "Wipe", + "WipeExpanded", + "WipeViaIdentity", + "WipeViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -2349,21 +2472,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Clear-MgBetaDeviceManagementComanagedDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -2390,133 +2514,139 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Clear-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Wipe", - "WipeExpanded", - "WipeViaIdentity", - "WipeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaSecurityCaseEdiscoveryCaseSearchData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData", + "ApiVersion": "beta", "Variants": [ "Purge", "PurgeExpanded", "PurgeViaIdentity", "PurgeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamPrimaryChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamPrimaryChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaUserAndBlockManagedApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/wipeAndBlockManagedApps", + "ApiVersion": "beta", + "Variants": [ + "Wipe", + "WipeViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -2535,19 +2665,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Clear-MgBetaUserAndBlockManagedApp", - "Variants": [ - "Wipe", - "WipeViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaUserChatMessageReaction", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "beta", + "Variants": [ + "Unset", + "UnsetExpanded", + "UnsetViaIdentity", + "UnsetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "ChatMessage.Send", @@ -2566,37 +2699,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Clear-MgBetaUserChatMessageReaction", - "Variants": [ - "Unset", - "UnsetExpanded", - "UnsetViaIdentity", - "UnsetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaUserChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "beta", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByAzureAdDeviceId", + "ApiVersion": "beta", + "Variants": [ + "Wipe", + "WipeExpanded", + "WipeViaIdentity", + "WipeViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -2615,53 +2750,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Clear-MgBetaUserManagedAppRegistrationByAzureAdDeviceId", - "Variants": [ - "Wipe", - "WipeExpanded", - "WipeViaIdentity", - "WipeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByDeviceTag", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaUserManagedAppRegistrationByDeviceTag", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/wipeManagedAppRegistrationsByDeviceTag", + "ApiVersion": "beta", "Variants": [ "Wipe1", "WipeExpanded1", "WipeViaIdentity1", "WipeViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "beta", "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaUserPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta", "Uri": "/users/{user-id}/presence/clearPresence", + "ApiVersion": "beta", + "Variants": [ + "Clear", + "ClearExpanded", + "ClearViaIdentity", + "ClearViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -2680,21 +2818,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Clear-MgBetaUserPresence", - "Variants": [ - "Clear", - "ClearExpanded", - "ClearViaIdentity", - "ClearViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgBetaUserPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta", "Uri": "/users/{user-id}/presence/clearUserPreferredPresence", + "ApiVersion": "beta", + "Variants": [ + "Clear", + "ClearViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -2713,81 +2850,88 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Clear-MgBetaUserPresenceUserPreferredPresence", - "Variants": [ - "Clear", - "ClearViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgChatMessageReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/clearPresence", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgCommunicationPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0", + "Uri": "/communications/presences/{presence-id}/clearPresence", + "ApiVersion": "v1.0", "Variants": [ "Clear", "ClearExpanded", "ClearViaIdentity", "ClearViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgCommunicationPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0", + "Uri": "/communications/presences/{presence-id}/clearUserPreferredPresence", + "ApiVersion": "v1.0", "Variants": [ "Clear", "ClearViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgDeviceManagementManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "v1.0", + "Variants": [ + "Wipe", + "WipeExpanded", + "WipeViaIdentity", + "WipeViaIdentityExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -2814,133 +2958,141 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Clear-MgDeviceManagementManagedDevice", - "Variants": [ - "Wipe", - "WipeExpanded", - "WipeViaIdentity", - "WipeViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgSecurityCaseEdiscoveryCaseSearchData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/purgeData", + "ApiVersion": "v1.0", "Variants": [ "Purge", "PurgeExpanded", "PurgeViaIdentity", "PurgeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-purgedata?view=graph-rest-1.0" + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamPrimaryChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamPrimaryChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgTeamworkDeletedTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgUserChatMessageReaction", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/unsetReaction", + "ApiVersion": "v1.0", + "Variants": [ + "Unset", + "UnsetExpanded", + "UnsetViaIdentity", + "UnsetViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "ChatMessage.Send", @@ -2959,53 +3111,56 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Clear-MgUserChatMessageReaction", - "Variants": [ - "Unset", - "UnsetExpanded", - "UnsetViaIdentity", - "UnsetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgUserChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/unsetReaction", + "ApiVersion": "v1.0", "Variants": [ "Unset", "UnsetExpanded", "UnsetViaIdentity", "UnsetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Clear-MgUserManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/wipe", + "ApiVersion": "v1.0", "Variants": [ "Wipe", "WipeExpanded", "WipeViaIdentity", "WipeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-wipe?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgUserPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0", "Uri": "/users/{user-id}/presence/clearPresence", + "ApiVersion": "v1.0", + "Variants": [ + "Clear", + "ClearExpanded", + "ClearViaIdentity", + "ClearViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -3024,21 +3179,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Clear-MgUserPresence", - "Variants": [ - "Clear", - "ClearExpanded", - "ClearViaIdentity", - "ClearViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearpresence?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Clear-MgUserPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0", "Uri": "/users/{user-id}/presence/clearUserPreferredPresence", + "ApiVersion": "v1.0", + "Variants": [ + "Clear", + "ClearViaIdentity" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -3057,19 +3211,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Clear-MgUserPresenceUserPreferredPresence", - "Variants": [ - "Clear", - "ClearViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-clearuserpreferredpresence?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Close-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-close?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/close", + "ApiVersion": "beta", + "Variants": [ + "Close", + "CloseViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -3088,19 +3243,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Close-MgBetaComplianceEdiscoveryCase", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Close-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close", + "ApiVersion": "beta", "Variants": [ "Close", "CloseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-close?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -3119,19 +3275,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Close-MgBetaSecurityCaseEdiscoveryCase", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Close-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close", + "ApiVersion": "v1.0", "Variants": [ "Close", "CloseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/close", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -3150,19 +3307,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Close-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "Close", - "CloseViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-close?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Compare-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/compare(templateId='{templateId}')", + "ApiVersion": "beta", + "Variants": [ + "Compare", + "CompareViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -3181,19 +3339,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Compare-MgBetaDeviceManagementIntent", + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Compare-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/compare(templateId='{templateId}')", + "ApiVersion": "beta", "Variants": [ "Compare", "CompareViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/compare(templateId='{templateId}')", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -3212,19 +3371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Compare-MgBetaDeviceManagementTemplate", + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Compare-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/compare(templateId='{templateId}')", + "ApiVersion": "beta", "Variants": [ "Compare", "CompareViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/compare(templateId='{templateId}')", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -3243,339 +3403,362 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Compare-MgBetaDeviceManagementTemplateMigratableTo", - "Variants": [ - "Compare", - "CompareViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementSettingComparison" }, { - "Uri": "/deviceManagement/androidForWorkSettings/completeSignup", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaDeviceManagementAndroidForWorkSettingSignup", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings/completeSignup", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignup", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/completeSignup", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/impactedResources/{impactedResource-id}/complete", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta", + "Uri": "/directory/impactedResources/{impactedResource-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/recommendations/{recommendation-id}/complete", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaDirectoryRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-complete?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-complete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/complete", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-complete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaTeamChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/completeMigration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaTeamMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-beta", + "Uri": "/teams/{team-id}/completeMigration", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/completeMigration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaTeamPrimaryChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/completeMigration", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaTeamworkDeletedTeamChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/complete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaUserOutlookTask", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/complete", + "ApiVersion": "beta", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlooktask-complete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgTeamChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "v1.0", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/completeMigration", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgTeamMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/completeMigration", + "ApiVersion": "v1.0", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-completemigration?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/completeMigration", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgTeamPrimaryChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/completeMigration", + "ApiVersion": "v1.0", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Complete-MgTeamworkDeletedTeamChannelMigration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/completeMigration", + "ApiVersion": "v1.0", "Variants": [ "Complete", "CompleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-completemigration?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/checkMemberGroups", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgApplicationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/checkMemberObjects", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgApplicationMemberObject", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaAdministrativeUnitMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaAdministrativeUnitMemberObject", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaApplicationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/applications/{application-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaApplicationMemberObject", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaAuditLogSignInCompromised", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmcompromised?view=graph-rest-beta", "Uri": "/auditLogs/signIns/confirmCompromised", + "ApiVersion": "beta", + "Variants": [ + "Confirm", + "ConfirmExpanded" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "IdentityRiskyUser.ReadWrite.All", @@ -3594,19 +3777,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Reports", - "Command": "Confirm-MgBetaAuditLogSignInCompromised", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaAuditLogSignInSafe", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmsafe?view=graph-rest-beta", + "Uri": "/auditLogs/signIns/confirmSafe", + "ApiVersion": "beta", "Variants": [ "Confirm", "ConfirmExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmcompromised?view=graph-rest-beta" - }, - { - "Uri": "/auditLogs/signIns/confirmSafe", + "Module": "Beta.Reports", "Permissions": [ { "Name": "IdentityRiskyUser.ReadWrite.All", @@ -3625,19 +3809,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Reports", - "Command": "Confirm-MgBetaAuditLogSignInSafe", - "Variants": [ - "Confirm", - "ConfirmExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/signin-confirmsafe?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaContactMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", "Uri": "/contacts/{orgContact-id}/checkMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -3728,21 +3915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaContactMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaContactMemberObject", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -3841,53 +4029,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaContactMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaContractMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/contracts/{contract-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaContractMemberObject", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Confirm-MgBetaDeviceManagementWindowsEnrollmentAutoDiscovery", + "ApiReferenceLink": null, "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')", + "ApiVersion": "beta", + "Variants": [ + "Verify", + "VerifyViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -3906,19 +4095,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Confirm-MgBetaDeviceManagementWindowsEnrollmentAutoDiscovery", - "Variants": [ - "Verify", - "VerifyViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDeviceMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", "Uri": "/devices/{device-id}/checkMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -4009,21 +4201,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaDeviceMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDeviceMemberObject", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/devices/{device-id}/checkMemberObjects", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -4122,53 +4315,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaDeviceMemberObject", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDirectoryDeletedItemMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaDirectoryDeletedItemMemberGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDirectoryDeletedItemMemberObject", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Confirm-MgBetaDirectoryDeletedItemMemberObject", + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDirectoryObjectMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "Module": "Beta.DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -4259,21 +4455,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DirectoryObjects", - "Command": "Confirm-MgBetaDirectoryObjectMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaDirectoryObjectMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "Module": "Beta.DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -4372,145 +4569,154 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DirectoryObjects", - "Command": "Confirm-MgBetaDirectoryObjectMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectoryRoleTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectorySettingTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDirectorySettingTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verify", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-beta", + "Uri": "/domains/{domain-id}/verify", + "ApiVersion": "beta", "Variants": [ "Verify", "VerifyViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaGroupGrantedPermissionForApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", + "ApiVersion": "beta", "Variants": [ "Check", "CheckViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaGroupMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", "Uri": "/groups/{group-id}/checkMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -4601,21 +4807,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Confirm-MgBetaGroupMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaGroupMemberObject", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/checkMemberObjects", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -4714,111 +4921,118 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Confirm-MgBetaGroupMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/verifySignature", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaGroupSiteInformationProtectionSignature", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/verifySignature", + "ApiVersion": "beta", "Variants": [ "Verify", "VerifyExpanded", "VerifyViaIdentity", "VerifyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/verifySignature", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaInformationProtectionSignature", + "ApiReferenceLink": null, + "Uri": "/informationProtection/verifySignature", + "ApiVersion": "beta", "Variants": [ "Verify", "VerifyExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/checkMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaOrganizationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", + "Uri": "/organization/{organization-id}/checkMemberGroups", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/checkMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaOrganizationMemberObject", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaRiskyServicePrincipalCompromised", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-beta", + "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised", + "ApiVersion": "beta", "Variants": [ "Confirm", "ConfirmExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/confirmCompromised", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaRiskyUserCompromised", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-confirmcompromised?view=graph-rest-beta", + "Uri": "/identityProtection/riskyUsers/confirmCompromised", + "ApiVersion": "beta", "Variants": [ "Confirm", "ConfirmExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-confirmcompromised?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaServicePrincipalMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -4909,21 +5123,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Confirm-MgBetaServicePrincipalMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaServicePrincipalMemberObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -5022,67 +5237,71 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Confirm-MgBetaServicePrincipalMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/informationProtection/verifySignature", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaSiteInformationProtectionSignature", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/verifySignature", + "ApiVersion": "beta", "Variants": [ "Verify", "VerifyExpanded", "VerifyViaIdentity", "VerifyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/confirm", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-confirm?view=graph-rest-beta", + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/confirm", + "ApiVersion": "beta", "Variants": [ "Confirm", "ConfirmViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-confirm?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/users/{user-id}/informationProtection/verifySignature", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgBetaUserInformationProtectionSignature", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/verifySignature", + "ApiVersion": "beta", "Variants": [ "Verify", "VerifyExpanded", "VerifyViaIdentity", "VerifyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaUserMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta", "Uri": "/users/{user-id}/checkMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -5173,21 +5392,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Confirm-MgBetaUserMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgBetaUserMemberObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/checkMemberObjects", + "ApiVersion": "beta", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/checkMemberObjects", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -5286,21 +5506,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Confirm-MgBetaUserMemberObject", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgContactMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/contacts/{orgContact-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/contacts/{orgContact-id}/checkMemberGroups", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -5391,21 +5612,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgContactMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgContactMemberObject", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/contacts/{orgContact-id}/checkMemberObjects", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -5504,53 +5726,54 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgContactMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/checkMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgContractMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/contracts/{contract-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/checkMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgContractMemberObject", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery", + "ApiReferenceLink": null, "Uri": "/deviceManagement/verifyWindowsEnrollmentAutoDiscovery(domainName='{domainName}')", + "ApiVersion": "v1.0", + "Variants": [ + "Verify", + "VerifyViaIdentity" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -5569,19 +5792,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Confirm-MgDeviceManagementWindowsEnrollmentAutoDiscovery", - "Variants": [ - "Verify", - "VerifyViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDeviceMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", "Uri": "/devices/{device-id}/checkMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -5672,21 +5898,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgDeviceMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDeviceMemberObject", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/devices/{device-id}/checkMemberObjects", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -5785,53 +6012,56 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgDeviceMemberObject", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDirectoryDeletedItemMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgDirectoryDeletedItemMemberGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDirectoryDeletedItemMemberObject", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/checkMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Confirm-MgDirectoryDeletedItemMemberObject", + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDirectoryObjectMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/checkMemberGroups", + "Module": "DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -5922,21 +6152,22 @@ "IsLeastPrivilege": false } ], - "Module": "DirectoryObjects", - "Command": "Confirm-MgDirectoryObjectMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgDirectoryObjectMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/checkMemberObjects", + "Module": "DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -6035,113 +6266,120 @@ "IsLeastPrivilege": false } ], - "Module": "DirectoryObjects", - "Command": "Confirm-MgDirectoryObjectMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgDirectoryRoleMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/directoryRoles/{directoryRole-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgDirectoryRoleMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgDirectoryRoleTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgDirectoryRoleTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verify", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-1.0", + "Uri": "/domains/{domain-id}/verify", + "ApiVersion": "v1.0", "Variants": [ "Verify", "VerifyViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-verify?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgGroupGrantedPermissionForApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/checkGrantedPermissionsForApp", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgGroupMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", "Uri": "/groups/{group-id}/checkMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -6232,21 +6470,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Confirm-MgGroupMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgGroupMemberObject", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/checkMemberObjects", + "Module": "Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -6345,113 +6584,120 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Confirm-MgGroupMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberGroups", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgGroupSettingTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberObjects", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgGroupSettingTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/checkMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgOrganizationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/organization/{organization-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/checkMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgOrganizationMemberObject", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgRiskyServicePrincipalCompromised", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-1.0", + "Uri": "/identityProtection/riskyServicePrincipals/confirmCompromised", + "ApiVersion": "v1.0", "Variants": [ "Confirm", "ConfirmExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-confirmcompromised?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/confirmCompromised", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Confirm-MgRiskyUserCompromised", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-confirmcompromised?view=graph-rest-1.0", + "Uri": "/identityProtection/riskyUsers/confirmCompromised", + "ApiVersion": "v1.0", "Variants": [ "Confirm", "ConfirmExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-confirmcompromised?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgServicePrincipalMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Check", + "CheckExpanded", + "CheckViaIdentity", + "CheckViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -6542,21 +6788,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Confirm-MgServicePrincipalMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgServicePrincipalMemberObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/checkMemberObjects", + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -6655,21 +6902,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Confirm-MgServicePrincipalMemberObject", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgUserMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0", + "Uri": "/users/{user-id}/checkMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/checkMemberGroups", + "Module": "Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -6760,21 +7008,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Confirm-MgUserMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Confirm-MgUserMemberObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/checkMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Check", "CheckExpanded", "CheckViaIdentity", "CheckViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-checkmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/checkMemberObjects", + "Module": "Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -6873,48 +7122,49 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Confirm-MgUserMemberObject", - "Variants": [ - "Check", - "CheckExpanded", - "CheckViaIdentity", - "CheckViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/chromeOSOnboardingSettings/connect", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Connect-MgBetaDeviceManagementChromeOSOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/chromeOSOnboardingSettings/connect", + "ApiVersion": "beta", "Variants": [ "Connect", "ConnectExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/zebraFotaConnector/connect", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Connect-MgBetaDeviceManagementZebraFotaConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/zebraFotaConnector/connect", + "ApiVersion": "beta", "Variants": [ "Connect" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Convert-MgBetaDeviceAppMgtMobileAppFromMobileAppCatalogPackage", + "Method": "GET", + "Command": "Convert-MgBetaDeviceAppManagementMobileAppFromMobileAppCatalogPackage", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/convertFromMobileAppCatalogPackage(mobileAppCatalogPackageId='{mobileAppCatalogPackageId}')", + "ApiVersion": "beta", + "Variants": [ + "Convert", + "ConvertViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -6933,19 +7183,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Convert-MgBetaDeviceAppManagementMobileAppFromMobileAppCatalogPackage", - "Variants": [ - "Convert", - "ConvertViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileApp" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Convert-MgBetaUserExternalToInternalMemberUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-convertexternaltointernalmemberuser?view=graph-rest-beta", "Uri": "/users/{user-id}/convertExternalToInternalMemberUser", + "ApiVersion": "beta", + "Variants": [ + "Convert", + "ConvertExpanded", + "ConvertViaIdentity", + "ConvertViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User-ConvertToInternal.ReadWrite.All", @@ -6964,35 +7217,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Convert-MgBetaUserExternalToInternalMemberUser", - "Variants": [ - "Convert", - "ConvertExpanded", - "ConvertViaIdentity", - "ConvertViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversionUserDetails", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-convertexternaltointernalmemberuser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphConversionUserDetails" }, { - "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/clone", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaDeviceManagementReusablePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/clone", + "ApiVersion": "beta", "Variants": [ "Clone", "CloneViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementReusablePolicySetting" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -7019,101 +7274,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Copy-MgBetaDriveItem", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaGroupDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -7140,21 +7401,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Copy-MgBetaGroupOnenoteNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaGroupOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -7181,21 +7443,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Copy-MgBetaGroupOnenotePageToSection", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaGroupOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -7222,21 +7485,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Copy-MgBetaGroupOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaGroupOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -7263,69 +7527,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Copy-MgBetaGroupOnenoteSectionToSectionGroup", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaGroupSiteContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaGroupSiteListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaShareListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -7352,37 +7620,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteContentTypeToDefaultContentLocation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteListContentTypeToDefaultContentLocation", + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -7409,117 +7679,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteOnenoteNotebook", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionGroupSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteNotebookSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -7546,85 +7823,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteOnenotePageToSection", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionGroupSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaSiteOnenoteSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -7651,21 +7933,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaSiteOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -7692,21 +7975,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Copy-MgBetaSiteOnenoteSectionToSectionGroup", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-beta", "Uri": "/teams/{team-id}/clone", + "ApiVersion": "beta", + "Variants": [ + "Clone", + "CloneExpanded", + "CloneViaIdentity", + "CloneViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.Create", @@ -7733,149 +8017,158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Copy-MgBetaTeam", - "Variants": [ - "Clone", - "CloneExpanded", - "CloneViaIdentity", - "CloneViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserMailFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgBetaUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/copy", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "beta", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -7902,21 +8195,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Copy-MgBetaUserOnenoteNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaUserOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta", + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -7943,21 +8237,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Copy-MgBetaUserOnenotePageToSection", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaUserOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta", + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -7984,21 +8279,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Copy-MgBetaUserOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgBetaUserOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta", + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "beta", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -8025,21 +8321,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Copy-MgBetaUserOnenoteSectionToSectionGroup", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-beta" - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/copy", + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -8066,101 +8363,107 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Copy-MgDriveItem", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgGroupDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgGroupOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -8187,21 +8490,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Copy-MgGroupOnenoteNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgGroupOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/copyToSection", + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -8228,21 +8532,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Copy-MgGroupOnenotePageToSection", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgGroupOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -8269,21 +8574,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Copy-MgGroupOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -8310,69 +8616,73 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Copy-MgGroupOnenoteSectionToSectionGroup", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgGroupSiteContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgGroupSiteListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgShareListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -8399,37 +8709,39 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Copy-MgSiteContentTypeToDefaultContentLocation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Sites", - "Command": "Copy-MgSiteListContentTypeToDefaultContentLocation", + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -8456,117 +8768,124 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Copy-MgSiteOnenoteNotebook", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionGroupSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteNotebookSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -8593,85 +8912,90 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Copy-MgSiteOnenotePageToSection", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionGroupSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgSiteOnenoteSectionPageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -8698,21 +9022,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Copy-MgSiteOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -8739,21 +9064,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Copy-MgSiteOnenoteSectionToSectionGroup", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0", "Uri": "/teams/{team-id}/clone", + "ApiVersion": "v1.0", + "Variants": [ + "Clone", + "CloneExpanded", + "CloneViaIdentity", + "CloneViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.Create", @@ -8780,149 +9106,158 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Copy-MgTeam", - "Variants": [ - "Clone", - "CloneExpanded", - "CloneViaIdentity", - "CloneViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-clone?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserDriveListContentTypeToDefaultContentLocation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/copyToDefaultContentLocation", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-copytodefaultcontentlocation?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserMailFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserMailFolderChildFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/copy", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Copy-MgUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/copy", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-copy?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgUserOnenoteNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0", "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/copyNotebook", + "ApiVersion": "v1.0", + "Variants": [ + "Copy", + "CopyExpanded", + "CopyViaIdentity", + "CopyViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -8949,21 +9284,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Copy-MgUserOnenoteNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgUserOnenotePageToSection", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-copynotebook?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/copyToSection", + "Module": "Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -8990,21 +9326,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Copy-MgUserOnenotePageToSection", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgUserOnenoteSectionToNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/page-copytosection?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToNotebook", + "Module": "Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -9031,21 +9368,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Copy-MgUserOnenoteSectionToNotebook", + "OutputType": "IMicrosoftGraphOnenoteOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Copy-MgUserOnenoteSectionToSectionGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Copy", "CopyExpanded", "CopyViaIdentity", "CopyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytonotebook?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/copyToSectionGroup", + "Module": "Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -9072,37 +9410,37 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Copy-MgUserOnenoteSectionToSectionGroup", - "Variants": [ - "Copy", - "CopyExpanded", - "CopyViaIdentity", - "CopyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/section-copytosectiongroup?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/deny", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Deny-MgBetaDeviceManagementElevationRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/deny", + "ApiVersion": "beta", "Variants": [ "Deny", "DenyExpanded", "DenyViaIdentity", "DenyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Disable-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", + "Variants": [ + "Disable", + "DisableViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -9121,33 +9459,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Disable-MgBetaDeviceManagementComanagedDevice", - "Variants": [ - "Disable", - "DisableViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgBetaDeviceManagementComanagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Disable-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", + "Variants": [ + "Disable", + "DisableViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -9166,89 +9506,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Disable-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Disable", - "DisableViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgBetaDeviceManagementManagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/disableSmsSignIn", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgBetaUserAuthenticationMethodSmsSignIn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/disableSmsSignIn", + "ApiVersion": "beta", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disable", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disable", + "ApiVersion": "beta", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgBetaUserManagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "beta", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgDeviceManagementManagedDeviceLostMode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "v1.0", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-disablesmssignin?view=graph-rest-1.0", "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/disableSmsSignIn", + "ApiVersion": "v1.0", + "Variants": [ + "Disable", + "DisableViaIdentity" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -9267,46 +9613,49 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Disable-MgUserAuthenticationPhoneMethodSmsSignIn", - "Variants": [ - "Disable", - "DisableViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-disablesmssignin?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disable-MgUserManagedDeviceLostMode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/disableLostMode", + "ApiVersion": "v1.0", "Variants": [ "Disable", "DisableViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-disablelostmode?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/chromeOSOnboardingSettings/disconnect", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disconnect-MgBetaDeviceManagementChromeOSOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/chromeOSOnboardingSettings/disconnect", + "ApiVersion": "beta", "Variants": [ "Disconnect" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Disconnect-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect", + "ApiVersion": "beta", + "Variants": [ + "Disconnect", + "DisconnectViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -9325,32 +9674,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Disconnect-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Disconnect", - "DisconnectViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/zebraFotaConnector/disconnect", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Disconnect-MgBetaDeviceManagementZebraFotaConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/zebraFotaConnector/disconnect", + "ApiVersion": "beta", "Variants": [ "Disconnect" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/disconnect", + "ApiVersion": "v1.0", + "Variants": [ + "Disconnect", + "DisconnectViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -9369,19 +9720,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Disconnect-MgDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Disconnect", - "DisconnectViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-disconnect?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Enable-MgBetaDeviceManagementAndroidDeviceAdministratorEnrollment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/enableAndroidDeviceAdministratorEnrollment", + "ApiVersion": "beta", + "Variants": [ + "Enable" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -9400,48 +9751,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Enable-MgBetaDeviceManagementAndroidDeviceAdministratorEnrollment", - "Variants": [ - "Enable" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/assignmentFilters/enable", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/enable", + "ApiVersion": "beta", "Variants": [ "Enable", "EnableExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaDeviceManagementComanagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Enable-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/enableGlobalScripts", + "ApiVersion": "beta", + "Variants": [ + "Enable" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -9460,47 +9814,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Enable-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", - "Variants": [ - "Enable" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/enableLegacyPcManagement", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaDeviceManagementLegacyPcManagement", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/enableLegacyPcManagement", + "ApiVersion": "beta", "Variants": [ "Enable" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaDeviceManagementManagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Enable-MgBetaDeviceManagementTenantAttachRbac", + "ApiReferenceLink": null, "Uri": "/deviceManagement/tenantAttachRBAC/enable", + "ApiVersion": "beta", + "Variants": [ + "Enable", + "EnableExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -9519,62 +9877,66 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Enable-MgBetaDeviceManagementTenantAttachRbac", - "Variants": [ - "Enable", - "EnableExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/enableUnlicensedAdminstrators", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaDeviceManagementUnlicensedAdminstrator", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/enableUnlicensedAdminstrators", + "ApiVersion": "beta", "Variants": [ "Enable" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/enableSmsSignIn", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaUserAuthenticationMethodSmsSignIn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/enableSmsSignIn", + "ApiVersion": "beta", "Variants": [ "Enable", "EnableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enableLostMode", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Enable-MgBetaUserManagedDeviceLostMode", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enableLostMode", + "ApiVersion": "beta", "Variants": [ "Enable", "EnableExpanded", "EnableViaIdentity", "EnableViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-enablesmssignin?view=graph-rest-1.0", "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}/enableSmsSignIn", + "ApiVersion": "v1.0", + "Variants": [ + "Enable", + "EnableViaIdentity" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -9593,19 +9955,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Enable-MgUserAuthenticationPhoneMethodSmsSignIn", - "Variants": [ - "Enable", - "EnableViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/phoneauthenticationmethod-enablesmssignin?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-export?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/export", + "ApiVersion": "beta", + "Variants": [ + "Export", + "ExportExpanded", + "ExportViaIdentity", + "ExportViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -9624,21 +9989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Export-MgBetaComplianceEdiscoveryCaseReviewSet", - "Variants": [ - "Export", - "ExportExpanded", - "ExportViaIdentity", - "ExportViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-reviewset-export?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Export-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig", + "ApiReferenceLink": null, "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/exportMobileConfig", + "ApiVersion": "beta", + "Variants": [ + "Export", + "ExportViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -9657,19 +10021,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Export-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileMobileConfig", - "Variants": [ - "Export", - "ExportViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaDirectoryInboundSharedUserProfilePersonalData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-exportpersonaldata?view=graph-rest-beta", "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}/exportPersonalData", + "ApiVersion": "beta", + "Variants": [ + "Export", + "ExportExpanded", + "ExportViaIdentity", + "ExportViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read.All", @@ -9688,91 +10055,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Export-MgBetaDirectoryInboundSharedUserProfilePersonalData", - "Variants": [ - "Export", - "ExportExpanded", - "ExportViaIdentity", - "ExportViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-exportpersonaldata?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/export", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Export-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/export", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Export-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation/billed/export", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-beta", + "Uri": "/reports/partners/billing/reconciliation/billed/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/usage/billed/export", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingUsageBilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-beta", + "Uri": "/reports/partners/billing/usage/billed/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/usage/unbilled/export", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgBetaReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-beta", + "Uri": "/reports/partners/billing/usage/unbilled/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export", + "ApiVersion": "beta", + "Variants": [ + "Export", + "ExportExpanded", + "ExportViaIdentity", + "ExportViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -9791,21 +10164,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -9824,21 +10198,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchReport", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportReport", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportReport", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -9857,21 +10232,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchResult", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportResult", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/exportResult", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -9890,21 +10266,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Export-MgBetaSecurityCaseEdiscoveryCaseSearchResult", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Export-MgBetaUserDeviceAndAppManagementData", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/exportDeviceAndAppManagementData", + "ApiVersion": "beta", "Variants": [ "Export", - "ExportExpanded", + "Export1", "ExportViaIdentity", - "ExportViaIdentityExpanded" + "ExportViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/exportDeviceAndAppManagementData", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -9939,79 +10316,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Export-MgBetaUserDeviceAndAppManagementData", - "Variants": [ - "Export", - "Export1", - "ExportViaIdentity", - "ExportViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/exportPersonalData", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgBetaUserPersonalData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-beta", + "Uri": "/users/{user-id}/exportPersonalData", + "ApiVersion": "beta", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation/billed/export", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-1.0", + "Uri": "/reports/partners/billing/reconciliation/billed/export", + "ApiVersion": "v1.0", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedreconciliation-export?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/usage/billed/export", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgReportPartnerBillingUsageBilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-1.0", + "Uri": "/reports/partners/billing/usage/billed/export", + "ApiVersion": "v1.0", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-billedusage-export?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/usage/unbilled/export", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-1.0", + "Uri": "/reports/partners/billing/usage/unbilled/export", + "ApiVersion": "v1.0", "Variants": [ "Export", "ExportExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/partners-billing-unbilledusage-export?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/export", + "ApiVersion": "v1.0", + "Variants": [ + "Export", + "ExportExpanded", + "ExportViaIdentity", + "ExportViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10030,21 +10412,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSet", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export", + "ApiVersion": "v1.0", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewset-export?view=graph-rest-1.0" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/export", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -10063,21 +10446,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Export-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Export-MgUserDeviceAndAppManagementData", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/exportDeviceAndAppManagementData", + "ApiVersion": "v1.0", "Variants": [ "Export", - "ExportExpanded", + "Export1", "ExportViaIdentity", - "ExportViaIdentityExpanded" + "ExportViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-export?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/exportDeviceAndAppManagementData", + "Module": "Users.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -10112,135 +10496,142 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Export-MgUserDeviceAndAppManagementData", - "Variants": [ - "Export", - "Export1", - "ExportViaIdentity", - "ExportViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/exportPersonalData", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Export-MgUserPersonalData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0", + "Uri": "/users/{user-id}/exportPersonalData", + "ApiVersion": "v1.0", "Variants": [ "Export", "ExportExpanded", "ExportViaIdentity", "ExportViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-exportpersonaldata?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "v1.0", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "v1.0", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Variants": [ "Locate", "LocateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Variants": [ "Locate", "LocateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Find-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyByMethodMode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta", + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})", + "ApiVersion": "beta", "Variants": [ "Find1", "FindViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta", "Uri": "/policies/authenticationStrengthPolicies/findByMethodMode(authenticationMethodModes={authenticationMethodModes})", + "ApiVersion": "beta", + "Variants": [ + "Find", + "FindViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -10267,19 +10658,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Find-MgBetaPolicyAuthenticationStrengthPolicyByMethodMode", - "Variants": [ - "Find", - "FindViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-findbymethodmode?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", + "Variants": [ + "Discover", + "DiscoverViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -10298,47 +10690,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Find-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", - "Variants": [ - "Discover", - "DiscoverViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "beta", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "beta", "Variants": [ "Locate", "LocateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Find-MgBetaUserMeetingTime", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-beta", "Uri": "/users/{user-id}/findMeetingTimes", + "ApiVersion": "beta", + "Variants": [ + "Find", + "FindExpanded", + "FindViaIdentity", + "FindViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Calendars.Read.Shared", @@ -10357,21 +10754,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Find-MgBetaUserMeetingTime", + "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Find-MgBetaUserRoom", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/findRooms", + "ApiVersion": "beta", "Variants": [ "Find", - "FindExpanded", + "Find1", "FindViaIdentity", - "FindViaIdentityExpanded" + "FindViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/findRooms", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -10390,21 +10788,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Find-MgBetaUserRoom", - "Variants": [ - "Find", - "Find1", - "FindViaIdentity", - "FindViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAddress", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmailAddress" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Find-MgBetaUserRoomList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findroomlists?view=graph-rest-beta", "Uri": "/users/{user-id}/findRoomLists", + "ApiVersion": "beta", + "Variants": [ + "Find", + "FindViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -10423,61 +10820,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Find-MgBetaUserRoomList", - "Variants": [ - "Find", - "FindViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAddress", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findroomlists?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEmailAddress" }, { - "Uri": "/admin/windows/updates/products/findByCatalogId(catalogID='{catalogID}')", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Find-MgBetaWuProductGraphBPreCatalogId", + "Method": "GET", "Command": "Find-MgBetaWindowsUpdatesProductByCatalogId", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/findByCatalogId(catalogID='{catalogID}')", + "ApiVersion": "beta", "Variants": [ "Find", "FindViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/admin/windows/updates/products/findByKbNumber(kbNumber={kbNumber})", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Find-MgBetaWuProductGraphBPreKbNumber", + "Method": "GET", "Command": "Find-MgBetaWindowsUpdatesProductByKbNumber", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/findByKbNumber(kbNumber={kbNumber})", + "ApiVersion": "beta", "Variants": [ "Find", "FindViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgDeviceManagementManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "v1.0", "Variants": [ "Locate", "LocateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "v1.0", + "Variants": [ + "Discover", + "DiscoverViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -10496,47 +10897,52 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Find-MgServicePrincipalSynchronizationJobSchemaDirectory", - "Variants": [ - "Discover", - "DiscoverViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}/discover", + "ApiVersion": "v1.0", "Variants": [ "Discover", "DiscoverViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-directorydefinition-discover?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Find-MgUserManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/locateDevice", + "ApiVersion": "v1.0", "Variants": [ "Locate", "LocateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-locatedevice?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Find-MgUserMeetingTime", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0", "Uri": "/users/{user-id}/findMeetingTimes", + "ApiVersion": "v1.0", + "Variants": [ + "Find", + "FindExpanded", + "FindViaIdentity", + "FindViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Calendars.Read.Shared", @@ -10555,47 +10961,48 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Find-MgUserMeetingTime", - "Variants": [ - "Find", - "FindExpanded", - "FindViaIdentity", - "FindViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-findmeetingtimes?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMeetingTimeSuggestionsResult" }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEdge", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdge" }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternetExplorerMode", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10614,19 +11021,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10645,18 +11052,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteList", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10675,22 +11083,24 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", - "Permissions": [ - { - "Name": "BrowserSiteLists.Read.All", - "Description": "Read all browser site lists for your organization", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "BrowserSiteLists.Read.All", + "Description": "Read all browser site lists for your organization", "FullDescription": "Allows an app to read all browser site lists configured for your organization, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", @@ -10705,19 +11115,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10736,18 +11146,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10766,19 +11178,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSharedCookieCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10797,19 +11210,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10828,18 +11241,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSite", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -10858,19 +11273,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgAdminEdgeInternetExplorerModeSiteListSiteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminPeople", + "ApiReferenceLink": null, "Uri": "/admin/people", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -10889,32 +11304,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgAdminPeople", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPeopleAdminSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, "Uri": "/admin/people/profileCardProperties", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -10933,18 +11350,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgAdminPeopleProfileCardProperty", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminPeopleProfileCardPropertyCount", + "ApiReferenceLink": null, "Uri": "/admin/people/profileCardProperties/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -10963,18 +11381,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgAdminPeopleProfileCardPropertyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminPeoplePronoun", + "ApiReferenceLink": null, "Uri": "/admin/people/pronouns", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -10993,31 +11412,33 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgAdminPeoplePronoun", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPronounsSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharepoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAdminSharepointSetting", + "ApiReferenceLink": null, "Uri": "/admin/sharepoint/settings", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Sites", "Permissions": [ { "Name": "SharePointTenantSettings.Read.All", @@ -11036,86 +11457,93 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgAdminSharepointSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharepointSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/acceptances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/acceptances/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementAcceptanceCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAgreementFile", + "ApiReferenceLink": null, "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "Agreement.Read.All", @@ -11134,224 +11562,239 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgAgreementFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/files/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileLocalizationVersionCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAgreementFileVersionCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/getAllSites", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAllGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/getAllSites", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/team/allChannels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAllGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/allChannels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAllGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/allChannels/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Get-MgGroupTeamAllChannelCount", + "Method": "GET", "Command": "Get-MgAllGroupTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAllSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0", "Uri": "/sites/getAllSites", + "ApiVersion": "v1.0", + "Variants": [ + "Get2" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -11370,32 +11813,34 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgAllSite", - "Variants": [ - "Get2" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/teams/{team-id}/allChannels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAllTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/allChannels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAllTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/allChannels", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -11422,18 +11867,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAllTeamChannel", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": "Get-MgTeamAllChannelCount", + "Method": "GET", + "Command": "Get-MgAllTeamChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/allChannels/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -11460,19 +11907,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAllTeamChannelCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgTeamMessage", + "Method": "GET", + "Command": "Get-MgAllTeamMessage", + "ApiReferenceLink": null, "Uri": "/teams/getAllMessages", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -11547,31 +11994,34 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAllTeamMessage", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/getAllMessages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Get-MgTeamworkDeletedTeamMessage", + "Method": "GET", "Command": "Get-MgAllTeamworkDeletedTeamMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/getAllMessages", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAllUserChatMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chats-getallmessages?view=graph-rest-1.0", "Uri": "/users/{user-id}/chats/getAllMessages", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Chat.Read.All", @@ -11590,33 +12040,34 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgAllUserChatMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chats-getallmessages?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAppCatalogTeamApp", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -11659,18 +12110,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAppCatalogTeamApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAppCatalogTeamAppCount", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -11713,45 +12165,49 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAppCatalogTeamAppCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -11778,33 +12234,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgAppCatalogTeamAppDefinitionBot", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAppCatalogTeamAppDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -11847,19 +12305,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplication", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0", "Uri": "/applications", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -11910,58 +12368,63 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplication", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/{application-id}/appManagementPolicies", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/applications/{application-id}/appManagementPolicies/$ref", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/appManagementPolicies/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationAppManagementPolicyCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", "Uri": "/applications(appId='{appId}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12012,33 +12475,35 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationByAppId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/getByIds", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgApplicationById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/applications/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0", "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12089,19 +12554,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationByUniqueName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationCount", + "ApiReferenceLink": null, "Uri": "/applications/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12152,32 +12617,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/createdOnBehalfOf", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationCreatedOnBehalfOf", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/createdOnBehalfOf", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0", "Uri": "/applications/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12220,18 +12687,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12266,19 +12735,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationExtensionProperty", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12321,18 +12790,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationExtensionProperty", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationExtensionPropertyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12375,19 +12846,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationExtensionPropertyCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12406,19 +12878,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationFederatedIdentityCredential", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12445,18 +12917,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationFederatedIdentityCredential", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12483,19 +12957,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationFederatedIdentityCredentialByName", + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationFederatedIdentityCredentialCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count", + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -12522,106 +12997,112 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationFederatedIdentityCredentialCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/logo", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationLogo", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/logo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/getMemberGroups", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgApplicationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/getMemberObjects", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgApplicationMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationOwner", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12664,126 +13145,135 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationOwner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/applications/{application-id}/owners/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/applications/{application-id}/owners/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/applications/{application-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/applications/{application-id}/owners/user", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationOwnerByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12826,18 +13316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationOwnerCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12880,89 +13372,97 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/appRoleAssignment/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/endpoint/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/user/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgApplicationSynchronizationAccessToken", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0", "Uri": "/applications/{application-id}/synchronization/acquireAccessToken", + "ApiVersion": "v1.0", + "Variants": [ + "Acquire", + "AcquireExpanded", + "AcquireViaIdentity", + "AcquireViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -12981,159 +13481,168 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationSynchronizationAccessToken", - "Variants": [ - "Acquire", - "AcquireExpanded", - "AcquireViaIdentity", - "AcquireViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationJobSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/secrets/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationSecretCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/secrets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -13160,19 +13669,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationSynchronizationTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -13199,18 +13708,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationSynchronizationTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationSynchronizationTemplateCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -13237,19 +13748,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationSynchronizationTemplateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -13276,100 +13788,106 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationSynchronizationTemplateSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationSynchronizationTemplateSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applicationTemplates/{applicationTemplate-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0", + "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "Uri": "/applicationTemplates", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0", + "Uri": "/applicationTemplates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "Uri": "/applicationTemplates/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgApplicationTemplateCount", + "ApiReferenceLink": null, + "Uri": "/applicationTemplates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13412,18 +13930,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenIssuancePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenIssuancePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13466,18 +13985,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenIssuancePolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenIssuancePolicyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13520,19 +14041,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenIssuancePolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13575,18 +14096,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenLifetimePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13629,18 +14151,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenLifetimePolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgApplicationTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -13683,19 +14207,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgApplicationTokenLifetimePolicyCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogDirectoryAudit", + "ApiReferenceLink": null, + "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}", + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13714,19 +14239,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogDirectoryAudit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogDirectoryAudit", + "ApiReferenceLink": null, "Uri": "/auditLogs/directoryAudits", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13745,18 +14270,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogDirectoryAudit", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogDirectoryAuditCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/directoryAudits/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13775,32 +14301,34 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogDirectoryAuditCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgAuditLogProvisioning", + "ApiReferenceLink": null, + "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogProvisioning", + "ApiReferenceLink": null, "Uri": "/auditLogs/provisioning", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13819,18 +14347,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogProvisioning", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogProvisioningCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/provisioning/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13849,18 +14378,20 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogProvisioningCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogSignIn", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns/{signIn-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13879,19 +14410,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogSignIn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSignIn", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSignIn" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogSignIn", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13910,18 +14441,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogSignIn", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSignIn", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSignIn" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgAuditLogSignInCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -13940,18 +14472,20 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgAuditLogSignInCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-beta", "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -13978,19 +14512,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReview", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessReview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-beta", "Uri": "/accessReviews", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14017,18 +14551,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReview", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessReview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewCount", + "ApiReferenceLink": null, "Uri": "/accessReviews/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14055,32 +14590,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewDecision", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/decisions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14107,18 +14644,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewDecision", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewDecisionCount", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/decisions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14145,197 +14684,210 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewDecisionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstance", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/instances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstance", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceCount", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceDecisionCount", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceMyDecisionCount", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewInstanceReviewerCount", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewMyDecision", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/myDecisions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14362,18 +14914,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewMyDecision", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewMyDecisionCount", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/myDecisions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14400,33 +14954,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewMyDecisionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAccessReviewReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewReviewer", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/reviewers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14453,18 +15008,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewReviewer", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAccessReviewReviewerCount", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/reviewers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -14491,45 +15048,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAccessReviewReviewerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdge", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdge" }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternetExplorerMode", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14548,19 +15108,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14579,18 +15139,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteList", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14609,18 +15170,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14639,19 +15202,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14670,18 +15233,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14700,19 +15265,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookieCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14731,19 +15297,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14762,18 +15328,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSite", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBrowserSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount", + "ApiReferenceLink": null, "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "BrowserSiteLists.Read.All", @@ -14792,19 +15360,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaAdminEdgeInternetExplorerModeSiteListSiteCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnit", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-beta", + "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -14839,19 +15408,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnit", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-beta", "Uri": "/administrativeUnits", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -14886,32 +15455,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnit", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/administrativeUnits/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/administrativeUnits/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitCount", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -14946,18 +15517,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta", "Uri": "/administrativeUnits/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -14992,59 +15564,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitExtensionCount", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15079,32 +15655,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15139,32 +15717,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsApplication", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15199,32 +15779,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15259,32 +15841,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15319,32 +15903,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsOrgContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15379,32 +15965,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15439,18 +16027,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberAsUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15485,18 +16074,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCount", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15531,19 +16122,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15578,19 +16170,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsApplication", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15625,19 +16218,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15672,19 +16266,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15719,19 +16314,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsOrgContact", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15766,19 +16362,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsServicePrincipal", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -15813,51 +16410,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitMemberCountAsUser", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitMemberObject", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -15892,19 +16492,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -15939,18 +16539,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitScopedRoleMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdministrativeUnitScopedRoleMemberCount", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -15985,33 +16587,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdministrativeUnitScopedRoleMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/administrativeUnits/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaAdministrativeUnitUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/administrativeUnits/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminPeople", + "ApiReferenceLink": null, "Uri": "/admin/people", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -16030,18 +16633,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdminPeople", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPeopleAdminSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminPeopleItemInsight", + "ApiReferenceLink": null, "Uri": "/admin/people/itemInsights", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -16060,32 +16664,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdminPeopleItemInsight", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, "Uri": "/admin/people/profileCardProperties", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -16104,18 +16710,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdminPeopleProfileCardProperty", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminPeopleProfileCardPropertyCount", + "ApiReferenceLink": null, "Uri": "/admin/people/profileCardProperties/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -16134,18 +16741,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdminPeopleProfileCardPropertyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminPeoplePronoun", + "ApiReferenceLink": null, "Uri": "/admin/people/pronouns", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "PeopleSettings.Read.All", @@ -16164,18 +16772,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaAdminPeoplePronoun", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPronounsSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPronounsSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminReportSetting", + "ApiReferenceLink": null, "Uri": "/admin/reportSettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "ReportSettings.Read.All", @@ -16194,31 +16803,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAdminReportSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdminReportSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdminReportSettings" }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharepoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAdminSharepointSetting", + "ApiReferenceLink": null, "Uri": "/admin/sharepoint/settings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "SharePointTenantSettings.Read.All", @@ -16237,86 +16848,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaAdminSharepointSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharepointSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/acceptances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/acceptances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementAcceptanceCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAgreementFile", + "ApiReferenceLink": null, "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "Agreement.Read.All", @@ -16335,224 +16953,239 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaAgreementFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/files/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileLocalizationVersionCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAgreementFileVersionCount", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/getAllSites", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/getAllSites", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/team/allChannels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/allChannels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/allChannels/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Get-MgBetaGroupTeamAllChannelCount", + "Method": "GET", "Command": "Get-MgBetaAllGroupTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/allChannels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAllSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta", "Uri": "/sites/getAllSites", + "ApiVersion": "beta", + "Variants": [ + "Get2" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -16571,32 +17204,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaAllSite", - "Variants": [ - "Get2" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getallsites?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/teams/{team-id}/allChannels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/allChannels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAllTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/allChannels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -16623,18 +17258,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAllTeamChannel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": "Get-MgBetaTeamAllChannelCount", + "Method": "GET", + "Command": "Get-MgBetaAllTeamChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/allChannels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -16661,19 +17298,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAllTeamChannelCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaTeamMessage", + "Method": "GET", + "Command": "Get-MgBetaAllTeamMessage", + "ApiReferenceLink": null, "Uri": "/teams/getAllMessages", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -16748,31 +17385,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAllTeamMessage", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/getAllMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Get-MgBetaTeamworkDeletedTeamMessage", + "Method": "GET", "Command": "Get-MgBetaAllTeamworkDeletedTeamMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/getAllMessages", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAllUserChatMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/getAllMessages", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Chat.Read.All", @@ -16791,61 +17431,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaAllUserChatMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/onlineMeetings/getAllRecordings", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/getAllRecordings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/getAllTranscripts", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAllUserOnlineMeetingTranscript", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-beta", + "Uri": "/users/{user-id}/onlineMeetings/getAllTranscripts", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-getalltranscripts?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamApp", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -16888,18 +17531,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppCount", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -16942,45 +17586,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -17007,19 +17655,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppDefinitionBot", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIcon", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -17046,19 +17695,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIcon", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -17085,76 +17737,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCard", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAppCatalogTeamAppDefinitionDashboardCardCount", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -17181,19 +17836,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Read.All", @@ -17220,21 +17878,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17277,19 +17934,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplication", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-beta", "Uri": "/applications", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17340,58 +17997,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplication", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/{application-id}/appManagementPolicies", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/applications/{application-id}/appManagementPolicies/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/appManagementPolicies/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationAppManagementPolicyCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", "Uri": "/applications(appId='{appId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17442,33 +18104,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationByAppId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/getByIds", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaApplicationById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/applications/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta", "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17519,47 +18183,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationByUniqueName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/{application-id}/connectorGroup", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationConnectorGroup", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/connectorGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/applications/{application-id}/connectorGroup/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationConnectorGroupByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationCount", + "ApiReferenceLink": null, "Uri": "/applications/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17610,32 +18276,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/createdOnBehalfOf", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationCreatedOnBehalfOf", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/createdOnBehalfOf", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-beta", "Uri": "/applications/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -17678,18 +18346,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17724,19 +18394,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationExtensionProperty", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17779,18 +18449,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationExtensionProperty", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationExtensionPropertyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17833,19 +18505,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationExtensionPropertyCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -17864,19 +18537,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationFederatedIdentityCredential", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17903,18 +18576,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationFederatedIdentityCredential", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17941,19 +18616,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationFederatedIdentityCredentialByName", + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationFederatedIdentityCredentialCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/$count", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -17980,106 +18656,112 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationFederatedIdentityCredentialCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/logo", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationLogo", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/logo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaApplicationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/applications/{application-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaApplicationMemberObject", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationOwner", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18122,99 +18804,106 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationOwner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/applications/{application-id}/owners/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/applications/{application-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/applications/{application-id}/owners/user", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationOwnerByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18257,18 +18946,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationOwnerCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18311,75 +19002,82 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/endpoint/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/user/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaApplicationSynchronizationAccessToken", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta", "Uri": "/applications/{application-id}/synchronization/acquireAccessToken", + "ApiVersion": "beta", + "Variants": [ + "Acquire", + "AcquireExpanded", + "AcquireViaIdentity", + "AcquireViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18398,159 +19096,168 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationSynchronizationAccessToken", - "Variants": [ - "Acquire", - "AcquireExpanded", - "AcquireViaIdentity", - "AcquireViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationJobSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/secrets/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationSecretCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/secrets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18577,19 +19284,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationSynchronizationTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18616,18 +19323,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationSynchronizationTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationSynchronizationTemplateCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18654,19 +19363,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationSynchronizationTemplateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -18693,100 +19403,106 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationSynchronizationTemplateSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationSynchronizationTemplateSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applicationTemplates/{applicationTemplate-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-beta", + "Uri": "/applicationTemplates/{applicationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-get?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "Uri": "/applicationTemplates", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-beta", + "Uri": "/applicationTemplates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-list?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationTemplate" }, { - "Uri": "/applicationTemplates/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaApplicationTemplateCount", + "ApiReferenceLink": null, + "Uri": "/applicationTemplates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -18829,18 +19545,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenIssuancePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenIssuancePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -18883,18 +19600,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenIssuancePolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenIssuancePolicyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -18937,19 +19656,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenIssuancePolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -18992,18 +19711,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenLifetimePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -19046,18 +19766,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenLifetimePolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaApplicationTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenLifetimePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -19100,73 +19822,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaApplicationTokenLifetimePolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaApplicationUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/applications/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/auditLogs/customSecurityAttributeAudits/{customSecurityAttributeAudit-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit", + "ApiReferenceLink": null, + "Uri": "/auditLogs/customSecurityAttributeAudits/{customSecurityAttributeAudit-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit" }, { - "Uri": "/auditLogs/customSecurityAttributeAudits", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAudit", + "ApiReferenceLink": null, + "Uri": "/auditLogs/customSecurityAttributeAudits", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeAudit" }, { - "Uri": "/auditLogs/customSecurityAttributeAudits/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogCustomSecurityAttributeAuditCount", + "ApiReferenceLink": null, + "Uri": "/auditLogs/customSecurityAttributeAudits/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogDirectoryAudit", + "ApiReferenceLink": null, "Uri": "/auditLogs/directoryAudits/{directoryAudit-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19185,19 +19912,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogDirectoryAudit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogDirectoryAudit", + "ApiReferenceLink": null, "Uri": "/auditLogs/directoryAudits", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19216,18 +19943,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogDirectoryAudit", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogDirectoryAuditCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/directoryAudits/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19246,72 +19974,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogDirectoryAuditCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioning", + "ApiReferenceLink": null, + "Uri": "/auditLogs/directoryProvisioning/{provisioningObjectSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "Uri": "/auditLogs/directoryProvisioning", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioning", + "ApiReferenceLink": null, + "Uri": "/auditLogs/directoryProvisioning", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { - "Uri": "/auditLogs/directoryProvisioning/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogDirectoryProvisioningCount", + "ApiReferenceLink": null, + "Uri": "/auditLogs/directoryProvisioning/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaAuditLogProvisioning", + "ApiReferenceLink": null, + "Uri": "/auditLogs/provisioning/{provisioningObjectSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogProvisioning", + "ApiReferenceLink": null, "Uri": "/auditLogs/provisioning", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19330,18 +20063,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogProvisioning", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProvisioningObjectSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProvisioningObjectSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogProvisioningCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/provisioning/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19360,18 +20094,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogProvisioningCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogSignIn", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns/{signIn-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19390,19 +20126,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogSignIn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignIn", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSignIn" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogSignIn", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19421,18 +20157,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogSignIn", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignIn", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSignIn" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaAuditLogSignInCount", + "ApiReferenceLink": null, "Uri": "/auditLogs/signIns/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -19451,18 +20188,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaAuditLogSignInCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusiness", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -19497,21 +20238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusiness", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusiness", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19546,19 +20286,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusiness", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -19593,21 +20336,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessAppointment", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19642,19 +20384,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessAppointment", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessAppointmentCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19689,37 +20434,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessAppointmentCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19754,19 +20499,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCalendarView", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCalendarViewCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19801,21 +20549,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCalendarViewCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19850,19 +20597,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCount", - "Variants": [ - "Get", - "Get1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -19897,21 +20647,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomer", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19946,19 +20695,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomer", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomerCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -19993,21 +20745,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomerCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20042,21 +20795,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomQuestion", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20091,19 +20843,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomQuestion", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessCustomQuestionCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20138,21 +20893,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessCustomQuestionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20187,21 +20943,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessService", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessService", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20236,19 +20991,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessService", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessServiceCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20283,21 +21041,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessServiceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaBookingBusinessStaffAvailability", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-beta", + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability", + "ApiVersion": "beta", "Variants": [ "Get", - "Get1", + "GetExpanded", "GetViaIdentity", - "GetViaIdentity1" + "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20340,21 +21099,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessStaffAvailability", + "OutputType": "IMicrosoftGraphStaffAvailabilityItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", - "GetExpanded", + "Get1", "GetViaIdentity", - "GetViaIdentityExpanded" + "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStaffAvailabilityItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-beta" - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20389,21 +21149,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessStaffMember", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingStaffMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20438,19 +21197,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessStaffMember", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingStaffMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBookingBusinessStaffMemberCount", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -20485,70 +21247,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBookingBusinessStaffMemberCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/bookingCurrencies/{bookingCurrency-id}", - "Permissions": [ - { - "Name": "Bookings.Read.All", - "Description": "Read bookings information", - "FullDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "BookingsAppointment.ReadWrite.All", - "Description": "Read and write booking appointments", - "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Bookings.ReadWrite.All", - "Description": "Read and write bookings information", - "FullDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Bookings.Manage.All", - "Description": "Manage bookings information", - "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingCurrencies", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20583,19 +21297,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", + "OutputType": "IMicrosoftGraphBookingCurrency" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingCurrencies/$count", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -20630,33 +21345,82 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", + "OutputType": "IMicrosoftGraphBookingCurrency" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBookingCurrencyCount", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [ + { + "Name": "Bookings.Read.All", + "Description": "Read bookings information", + "FullDescription": "Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "BookingsAppointment.ReadWrite.All", + "Description": "Read and write booking appointments", + "FullDescription": "Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Bookings.ReadWrite.All", + "Description": "Read and write bookings information", + "FullDescription": "Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Bookings.Manage.All", + "Description": "Manage bookings information", + "FullDescription": "Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBusinessFlowTemplate", + "ApiReferenceLink": null, + "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessFlowTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessflowtemplate-list?view=graph-rest-beta", "Uri": "/businessFlowTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -20683,18 +21447,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaBusinessFlowTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessflowtemplate-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessFlowTemplateCount", + "ApiReferenceLink": null, "Uri": "/businessFlowTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -20721,18 +21486,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaBusinessFlowTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenario", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -20767,19 +21534,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenario", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenario" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenario", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -20814,18 +21581,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenario", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenario" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioByUniqueName", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -20860,19 +21629,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioByUniqueName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenario" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioCount", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -20907,18 +21676,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlanner", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -20953,19 +21724,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlanner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioPlanner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenarioPlanner" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaBusinessScenarioPlannerPlan", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-getplan?view=graph-rest-beta", "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/getPlan", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioData.Read.OwnedBy", @@ -20984,21 +21758,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerPlan", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioPlanReference", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/businessscenarioplanner-getplan?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphBusinessScenarioPlanReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfiguration", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -21033,19 +21806,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfiguration", + "OutputType": "IMicrosoftGraphPlannerPlanConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -21080,19 +21854,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -21127,18 +21901,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalizationCount", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -21173,19 +21949,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerPlanConfigurationLocalizationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerTask", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioData.Read.OwnedBy", @@ -21204,19 +21981,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerTask", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioData.Read.OwnedBy", @@ -21235,46 +22012,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerTaskConfiguration", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.Read.OwnedBy", @@ -21309,19 +22090,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerTaskConfiguration", + "OutputType": "IMicrosoftGraphPlannerTaskConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaBusinessScenarioPlannerTaskCount", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/$count", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioData.Read.OwnedBy", @@ -21340,47 +22122,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Get-MgBetaBusinessScenarioPlannerTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskDetail", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-beta", "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -21447,19 +22232,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-beta", "Uri": "/chats", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -21510,18 +22295,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChat", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatCount", + "ApiReferenceLink": null, "Uri": "/chats/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -21572,18 +22358,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -21666,19 +22454,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -21793,18 +22581,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatInstalledAppCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -21919,61 +22709,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -22104,19 +22898,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -22215,18 +23009,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMemberCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -22325,19 +23121,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", + "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22388,20 +23186,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessage", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22444,18 +23241,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessageCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22498,19 +23297,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", "Uri": "/chats/{chat-id}/messages/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22561,19 +23361,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22632,21 +23435,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22705,18 +23506,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -22775,117 +23578,125 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatMessageHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatOperation", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -22960,19 +23771,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatOperation", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -23047,18 +23858,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatOperationCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -23133,33 +23946,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatPermissionGrant", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -23258,18 +24072,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/permissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -23368,35 +24184,36 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -23439,18 +24256,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatPinnedMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatPinnedMessageCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -23493,19 +24312,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatPinnedMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatRetainedMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta", "Uri": "/chats/getAllRetainedMessages", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -23572,18 +24391,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatRetainedMessage", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatTab", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -23650,19 +24471,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatTab", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatTab", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -23713,18 +24534,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatTab", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaChatTabCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -23775,33 +24598,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaChatTabCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaChatTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCall", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -23820,19 +24645,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCall", + "OutputType": "IMicrosoftGraphCall" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCall", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -23851,19 +24677,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -23882,18 +24708,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallAudioRoutingGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallAudioRoutingGroupCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -23912,19 +24740,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallAudioRoutingGroupCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -23959,19 +24788,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallContentSharingSession", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallContentSharingSession", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/contentSharingSessions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -24006,18 +24835,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallContentSharingSession", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentSharingSession", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentSharingSession" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallContentSharingSessionCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/contentSharingSessions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -24052,73 +24883,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallContentSharingSessionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/calls/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallCount", + "ApiReferenceLink": null, + "Uri": "/communications/calls/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/operations", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/operations/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallOperationCount", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -24137,19 +24973,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallParticipant", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -24168,18 +25004,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallParticipant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationCallParticipantCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -24198,214 +25036,228 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationCallParticipantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecord", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsCallRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsCallRecord" }, { - "Uri": "/communications/callRecords/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordOrganizerV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsOrganizer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsOrganizer" }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipant", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipantV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsParticipant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordParticipantV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsParticipant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "Uri": "/communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordPstnBlockedUserLog", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/getPstnBlockedUsersLog(fromDateTime={fromDateTime},toDateTime={toDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsPstnBlockedUsersLogRow", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsPstnBlockedUsersLogRow" }, { - "Uri": "/communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordPstnOnlineMeetingDialoutReport", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/getPstnOnlineMeetingDialoutReport(fromDateTime={fromDateTime},toDateTime={toDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsPstnOnlineMeetingDialoutReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsPstnOnlineMeetingDialoutReport" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSessionCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSessionSegmentCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationCallRecordSmLog", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/getSmsLog(fromDateTime={fromDateTime},toDateTime={toDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSmsLogRow", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSmsLogRow" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/communications/onlineMeetings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -24440,149 +25292,160 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationOnlineMeeting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAlternativeRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingBroadcastRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -24617,19 +25480,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationOnlineMeetingByJoinWebUrl", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationOnlineMeetingCount", + "ApiReferenceLink": null, "Uri": "/communications/onlineMeetings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -24664,35 +25527,30 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationOnlineMeetingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", @@ -24700,276 +25558,303 @@ "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRecordingDelta", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistration", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestionCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingRegistrationRegistrantCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptDelta", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationPresence", + "ApiReferenceLink": null, "Uri": "/communications/presences", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -24996,18 +25881,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationPresence", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaCommunicationPresenceByUserId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-beta", "Uri": "/communications/getPresencesByUserId", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Presence.Read.All", @@ -25026,19 +25913,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationPresenceByUserId", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaCommunicationPresenceCount", + "ApiReferenceLink": null, "Uri": "/communications/presences/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -25065,44 +25952,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaCommunicationPresenceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaCompliance", + "ApiReferenceLink": null, + "Uri": "/compliance", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "Uri": "/compliance/ediscovery", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscovery", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25121,19 +26012,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCase", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25152,18 +26043,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCase", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25182,18 +26074,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25212,19 +26106,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25243,18 +26137,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodian", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25273,33 +26169,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/lastIndexOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25318,19 +26216,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25349,18 +26247,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25379,33 +26279,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianSiteSourceSite", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25424,19 +26326,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25455,18 +26357,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25485,60 +26389,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroup", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25557,19 +26465,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25588,18 +26496,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25618,19 +26528,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseCustodianUserSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25649,19 +26560,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25680,18 +26591,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHold", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25710,33 +26623,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25755,18 +26669,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25785,129 +26701,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSourceSite", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceCount", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroup", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSourceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25926,18 +26850,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25956,19 +26882,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseLegalHoldUserSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -25987,19 +26914,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26018,18 +26945,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26048,19 +26977,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceDataSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/dataSource", + "ApiVersion": "beta", + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26079,47 +27009,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceDataSource", - "Variants": [ - "Get1", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/lastIndexOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseIndexOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26138,59 +27070,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseExportOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation/reviewSet", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationAsCaseExportOperationReviewSet", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}/caseExportOperation/reviewSet", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26209,33 +27146,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseOperationCountAsCaseExportOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/caseExportOperation/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26254,19 +27193,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26285,18 +27224,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSet", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26315,19 +27256,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26346,19 +27288,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26377,18 +27319,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQuery", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQueryCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26407,19 +27351,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseReviewSetQueryCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26438,19 +27383,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSetting", + "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26469,19 +27415,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26500,32 +27446,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26544,18 +27492,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26574,19 +27524,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/addToReviewSetOperation", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26605,19 +27556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionAddToReviewSetOperation", + "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCount", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryAddToReviewSetOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/$count", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26636,33 +27588,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26681,18 +27634,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/custodianSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26711,19 +27666,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionCustodianSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/lastEstimateStatisticsOperation", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26742,33 +27698,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionLastEstimateStatisticsOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryEstimateStatisticsOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/{noncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26787,18 +27744,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/noncustodialSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26817,19 +27776,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseSourceCollectionNoncustodialSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26848,19 +27808,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/tags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26879,32 +27839,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/{tag-id1}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/{tag-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26923,18 +27885,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTagCount", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/childTags/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26953,19 +27917,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseTagChildTagCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaComplianceEdiscoveryCaseTagCount", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags/$count", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -26984,33 +27949,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaComplianceEdiscoveryCaseTagCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaComplianceEdiscoveryCaseTagParent", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContact", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-beta", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27037,19 +28004,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOrgContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContact", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta", "Uri": "/contacts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27076,32 +28043,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContactById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/contacts/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactCount", + "ApiReferenceLink": null, "Uri": "/contacts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27128,18 +28097,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-beta", "Uri": "/contacts/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27166,32 +28136,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReport", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactDirectReport", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/directReports", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27226,72 +28198,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactDirectReport", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/contacts/{orgContact-id}/directReports/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactDirectReportCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/directReports/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27326,47 +28304,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactDirectReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/directReports/user/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactDirectReportCountAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactManager", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/manager", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27401,19 +28382,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactManager", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaContactMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/contacts/{orgContact-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -27496,21 +28480,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaContactMemberObject", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -27609,35 +28594,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOf", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactMemberOf", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/memberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27672,72 +28656,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactMemberOfCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/memberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27772,88 +28762,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/transitiveMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27880,72 +28875,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContactTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -27972,102 +28973,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContactTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveReports/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveReport", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveReports/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/transitiveReports", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveReport", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/transitiveReports/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaContactTransitiveReportCount", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContactUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/contacts/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContract", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-beta", "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -28086,19 +29094,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContract", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContract" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContract", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-beta", "Uri": "/contracts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -28117,32 +29125,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContract", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/contracts/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContractById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/contracts/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContractCount", + "ApiReferenceLink": null, "Uri": "/contracts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -28161,18 +29171,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContractCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaContractDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", "Uri": "/contracts/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -28191,64 +29202,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaContractDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contracts/{contract-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContractMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/contracts/{contract-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContractMemberObject", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaContractUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/contracts/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDataPolicyOperation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-beta", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "User.Export.All", @@ -28267,45 +29283,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaDataPolicyOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/dataPolicyOperations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/dataPolicyOperations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDataPolicyOperationCount", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta", "Uri": "/devices/{device-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -28340,19 +29359,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-beta", "Uri": "/devices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -28387,18 +29406,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgt", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagement", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28433,18 +29453,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagement", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAppManagement" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28463,19 +29485,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28494,18 +29516,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28540,19 +29564,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28587,18 +29611,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionAppCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28633,19 +29659,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAppCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28680,19 +29707,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28727,18 +29754,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28773,19 +29802,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28804,18 +29833,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28850,19 +29881,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28897,19 +29929,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28944,18 +29976,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -28990,19 +30024,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29037,18 +30071,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtectionAppCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29083,19 +30119,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtectionCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29130,18 +30166,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29176,19 +30214,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificate", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29207,19 +30246,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificate", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29238,18 +30277,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificateCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificateCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29268,45 +30308,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfiguration", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfiguration", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29325,19 +30369,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29356,18 +30400,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29386,32 +30432,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29430,19 +30478,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29461,18 +30509,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatusCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29491,19 +30541,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatusCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29522,19 +30573,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29553,18 +30604,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29583,19 +30636,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29614,19 +30668,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29645,18 +30699,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatusCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -29675,19 +30731,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatusCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29706,19 +30763,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29737,18 +30794,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29783,19 +30842,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29830,18 +30889,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionAppCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29876,19 +30937,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAppCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29923,19 +30985,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -29970,18 +31032,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30016,19 +31080,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30047,18 +31111,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30093,19 +31159,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30140,19 +31207,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30187,18 +31254,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppPolicyCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30233,18 +31301,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30279,19 +31349,114 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedAppRegistration" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistration", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30326,65 +31491,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicyCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30419,18 +31539,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30465,19 +31586,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicyCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30512,18 +31634,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30558,19 +31681,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "OutputType": "IMicrosoftGraphManagedAppPolicy" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicyCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30605,18 +31729,64 @@ "IsLeastPrivilege": false } ], + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequest", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequest", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequestCount", "Method": "GET", - "ApiReferenceLink": null + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationOperation", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30651,60 +31821,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationOperation", "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/$count", - "Permissions": [], "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequestCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30739,19 +31868,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "OutputType": "IMicrosoftGraphManagedAppOperation" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationOperationCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30786,18 +31916,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppRegistrationUserIdGraphWPreFlaggedAppRegistration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30832,19 +31963,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationOperationCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30879,18 +32011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppStatus", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -30925,65 +32058,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedAppStatuses", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppStatus", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedAppStatusCount", "Method": "GET", - "ApiReferenceLink": null - }, - { + "Command": "Get-MgBetaDeviceAppManagementManagedAppStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppStatuses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31018,49 +32105,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementManagedAppStatusCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBook", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31079,18 +32137,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBook" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBook", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31109,19 +32168,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBook" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31140,18 +32200,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31170,19 +32231,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31201,21 +32263,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBookCategories", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31234,19 +32297,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookCategory" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBookCategories/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31265,20 +32329,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookCategory" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31297,18 +32362,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31327,19 +32393,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookDeviceState", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31358,18 +32425,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookDeviceState", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31388,19 +32456,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookDeviceStateCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookDeviceStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31419,19 +32488,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookInstallSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEBookInstallSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31450,19 +32520,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphEBookInstallSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31481,18 +32552,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphUserInstallStateSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31511,19 +32583,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphUserInstallStateSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummaryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31542,19 +32615,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31573,18 +32647,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31603,19 +32678,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceStateCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31634,19 +32710,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31665,18 +32742,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31711,19 +32821,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31758,18 +32868,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31804,19 +32916,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31835,18 +32947,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31881,19 +32995,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31928,18 +33042,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFileCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -31974,19 +33090,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32021,19 +33138,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32068,18 +33185,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFileCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32114,19 +33233,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32145,19 +33265,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32176,32 +33296,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32220,155 +33342,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidForWorkApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32387,278 +33520,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedStoreApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32677,155 +33830,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidManagedStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidStoreApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidStoreApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -32844,155 +34008,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -33011,278 +34186,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosStoreApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosStoreApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -33301,155 +34496,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosVppApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -33468,196 +34674,210 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosVppApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicense", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicense", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicenseCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicenseCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSDmgApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSDmgApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -33676,278 +34896,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSDmgApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMacOSDmgApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/macOSLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -33966,278 +35206,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMacOSLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSPkgApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSPkgApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -34256,278 +35516,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSPkgApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMacOSPkgApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAndroidLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -34546,278 +35826,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAndroidLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedIosLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -34836,278 +36136,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedIosLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedMobileLobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35126,278 +36446,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35416,182 +36756,196 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35610,19 +36964,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35641,18 +36995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35671,33 +37027,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWin32LobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWin32LobApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/win32LobApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -35716,278 +37073,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWin32LobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWin32LobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppX", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAppX", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAppX" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppX", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsAppX", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36006,278 +37383,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppX", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAppX", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAppX" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsi", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMobileMsi", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsMobileMsi" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsi", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36296,278 +37693,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsi", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMobileMsi", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMobileMsi" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsStoreApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36586,155 +38003,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppX", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUniversalAppX", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUniversalAppX" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppX", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -36753,319 +38181,342 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppX", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUniversalAppX", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsUniversalAppX" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsWebApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsWebApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsWebApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37084,155 +38535,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsWebApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsWebApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWinGetApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWinGetApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/winGetApp", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37251,214 +38713,197 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWinGetApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWinGetApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCatalogPackage", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCatalogPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCatalogPackage" }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCatalogPackage", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackage", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCatalogPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCatalogPackage" }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCatalogPackageCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCatalogPackageCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppCategories", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37477,19 +38922,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppCategory" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCategory", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppCategories/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37508,19 +38954,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppCategory" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCategoryCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37539,19 +38986,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37570,18 +39018,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37600,19 +39049,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37631,18 +39081,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37661,19 +39112,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37692,18 +39144,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37722,19 +39175,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37753,18 +39207,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37783,19 +39238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatusCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37814,19 +39270,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37845,19 +39302,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37876,18 +39334,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37906,19 +39365,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationUserStatusCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37937,19 +39397,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37968,18 +39429,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -37998,18 +39460,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsAndroidGraphFPreWorkApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidForWorkApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidForWorkApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38028,18 +39491,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsAndroidLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38058,18 +39522,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsAndroidManagedStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidManagedStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidManagedStoreApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38088,18 +39553,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsAndroidStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsAndroidStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38118,18 +39584,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsiOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsiOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38148,18 +39615,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsIoStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38178,18 +39646,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsIoVppApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsIoVppApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38208,18 +39677,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsMacOSDmgApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSDmgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38238,18 +39708,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsMacOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38268,18 +39739,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsMacOSPkgApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMacOSPkgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/macOSPkgApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38298,18 +39770,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsManagedAndroidLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38328,18 +39801,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsManagediOSLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagediOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38358,18 +39832,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsManagedMobileLobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsManagedMobileLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38388,18 +39863,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38418,18 +39894,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWin32LobApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWin32LobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38448,18 +39925,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWindowAppX", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38478,18 +39956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWindowMobileMsi", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsMobileMsi", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38508,18 +39987,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWindowStoreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsStoreApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38538,18 +40018,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWindowUniversalAppX", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsUniversalAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38568,18 +40049,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWindowWebApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWindowsWebApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/winGetApp/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -38598,49 +40080,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppCountAsWinGetApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppCountAsWinGetApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/winGetApp/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -38659,18 +40143,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppRelationship" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppRelationship", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -38689,52 +40174,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppRelationship" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtMobileAppRelationshipCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementMobileAppRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySet", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38753,18 +40240,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySet" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySet", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38783,19 +40271,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySet" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38814,18 +40303,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySetAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38844,19 +40334,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySetAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38875,18 +40366,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38905,19 +40397,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetItem", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetItem", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38936,18 +40429,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySetItem" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetItem", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetItem", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -38966,19 +40460,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphPolicySetItem" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtPolicySetItemCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementPolicySetItemCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtSymantecCodeSigningCertificate", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementSymantecCodeSigningCertificate", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -38997,18 +40523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementSymantecCodeSigningCertificate", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39027,19 +40555,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39058,18 +40586,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39104,19 +40634,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39151,18 +40681,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAppCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39197,19 +40729,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAppCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39244,19 +40777,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39291,18 +40824,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignmentCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39337,19 +40872,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39368,18 +40903,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -39414,66 +40951,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39508,18 +40999,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39554,19 +41046,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSettingCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39601,19 +41094,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSettingDefinition", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39648,18 +41142,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSettingDefinition", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39694,66 +41189,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinitionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementTask", + "CommandAlias": "Get-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSettingDefinitionCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/deviceAppManagementTasks", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39788,18 +41237,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTask", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTask", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphDeviceAppManagementTask" }, { - "Uri": "/deviceAppManagement/deviceAppManagementTasks/$count", + "CommandAlias": "Get-MgBetaDeviceAppMgtTask", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementTask", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -39834,65 +41332,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceAppManagementTask" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtTaskCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementTaskCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtVppToken", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -39927,18 +41427,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphVppToken" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtVppToken", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -39973,18 +41474,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphVppToken" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtVppTokenCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementVppTokenCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/getLicensesForApp(bundleId='{bundleId}')", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -40019,50 +41521,68 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtVppTokenLicenseGraphFPreApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementVppTokenLicenseForApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/getLicensesForApp(bundleId='{bundleId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppTokenLicenseSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphVppTokenLicenseSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40081,18 +41601,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40111,19 +41632,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40142,18 +41664,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40172,19 +41695,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40203,18 +41727,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40233,19 +41758,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyDeploySummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeploySummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40264,19 +41790,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyDeviceStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40295,18 +41822,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWdacSupplementalPolicyDeviceStatus", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -40341,19 +41901,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistration", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -40388,18 +41948,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistrationCount", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistrationCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -40434,18 +41995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistrationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40480,19 +42043,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40527,18 +42090,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40573,65 +42138,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40666,19 +42185,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40713,18 +42233,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40759,19 +42280,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40806,18 +42328,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40852,19 +42375,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40899,19 +42423,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40946,18 +42471,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -40992,24 +42518,25 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFileCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -41023,35 +42550,36 @@ "IsLeastPrivilege": false }, { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionWipeAction", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41086,18 +42614,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionWipeAction", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41132,18 +42661,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowInformationProtectionWipeActionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsInformationProtectionWipeActionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41178,65 +42708,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtection", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41271,19 +42756,67 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphWindowsManagedAppProtection" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtection", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphWindowsManagedAppProtection" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41318,18 +42851,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionApp", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41364,19 +42898,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionAppCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41411,19 +42946,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41458,18 +42994,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignment", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41504,19 +43041,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignmentCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/$count", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41551,32 +43089,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionCount", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagedAppProtectionDeploymentSummary", + "Method": "GET", "Command": "Get-MgBetaDeviceAppManagementWindowsManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { + "CommandAlias": "Get-MgBetaDeviceAppMgtWindowManagementApp", + "Method": "GET", + "Command": "Get-MgBetaDeviceAppManagementWindowsManagementApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsManagementApp", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41611,18 +43198,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaDeviceAppManagementWindowsManagementApp", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagementApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsManagementApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta", "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -41657,88 +43246,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceByDeviceId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/devices/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/devices/{device-id}/commands", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/devices/{device-id}/commands/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceCommandCount", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/commands/{command-id}/responsepayload", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceCommandResponsepayload", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands/{command-id}/responsepayload", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceCount", + "ApiReferenceLink": null, "Uri": "/devices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -41773,72 +43367,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/delta", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta", + "Uri": "/devices/delta", + "ApiVersion": "beta", "Variants": [ "Delta" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/devices/{device-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -41921,48 +43520,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagement", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -41981,19 +43551,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42012,18 +43583,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42042,18 +43614,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42072,19 +43645,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42103,18 +43677,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42133,18 +43708,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42163,19 +43739,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42194,18 +43771,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42224,18 +43802,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchemaCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42254,19 +43833,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42285,18 +43865,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42315,18 +43896,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidForWorkSettings", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42345,18 +43927,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidForWorkSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42375,18 +43958,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidForWorkSettings" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42405,19 +43989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42436,18 +44021,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42466,18 +44052,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchemaCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -42512,18 +44130,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementApplePushNotificationCertificate", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42542,19 +44162,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42573,18 +44193,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42603,19 +44225,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42634,18 +44256,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42664,19 +44288,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -42695,18 +44319,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementAssignedRoleDetail", + "ApiReferenceLink": null, "Uri": "/deviceManagement/getAssignedRoleDetails", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42741,49 +44366,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementAssignedRoleDetail", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignedRoleDetails" }, { - "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/assignmentFilters", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42802,18 +44398,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/assignmentFilters/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42832,18 +44429,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform='{platform}')", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42862,19 +44460,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterPlatformSupportedProperty", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/getPlatformSupportedProperties(platform='{platform}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/assignmentFilters/getState", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42893,18 +44492,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/getState", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/getAssignmentFiltersStatusDetails", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42923,19 +44523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementAssignmentFilterStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/getAssignmentFiltersStatusDetails", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -42954,50 +44555,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphAssignmentFilterStatusDetails" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAssignmentFilterSupportedProperty", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}/getSupportedProperties", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphAssignmentFilterSupportedProperty" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/auditEvents", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -43016,18 +44619,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphAuditEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -43046,19 +44650,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphAuditEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventAuditActivityType", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/auditEvents/getAuditCategories", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -43077,18 +44682,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventAuditCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/getAuditCategories", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/auditEvents/$count", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -43107,49 +44713,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAuditEventCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -43168,18 +44776,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -43198,18 +44807,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -43228,19 +44838,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -43259,18 +44870,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -43289,50 +44901,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementAutopilotEventPolicyStatusDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/cartToClassAssociations", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43351,18 +44965,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCartToClassAssociation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/cartToClassAssociations/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43381,18 +44996,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCartToClassAssociation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCartToClassAssociationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43411,19 +45027,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43442,18 +45059,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43472,18 +45090,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43502,19 +45121,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43533,18 +45153,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43563,19 +45184,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCategorySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43594,21 +45216,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyLongValuePair", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43627,21 +45250,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": "IMicrosoftGraphKeyLongValuePair" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementCertificateConnectorDetailHealthMetricTimeSeries", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/certificateConnectorDetails/{certificateConnectorDetails-id}/getHealthMetricTimeSeries", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateConnectorHealthMetricValue" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43676,19 +45332,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComanagedDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43723,183 +45379,196 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComanagedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcRemoteActionResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcReviewStatus", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceCompliancePolicyStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagedDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -43934,59 +45603,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComanagedDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceDetectedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/detectedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagedDeviceFileVaultKey", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44021,238 +45695,254 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementComanagedDeviceFileVaultKey", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceHealthScriptStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceNonCompliantSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagedDeviceSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/getComanagedDevicesSummary", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44287,86 +45977,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementComanagedDeviceSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagedDevicesSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComanagedDevicesSummary" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44401,19 +46098,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44448,18 +46145,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComanagementEligibleDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComanagementEligibleDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44494,18 +46192,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/getComanagementEligibleDevicesSummary", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44540,18 +46239,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementComanagementEligibleDeviceSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComanagementEligibleDevicesSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -44586,19 +46287,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -44633,18 +46334,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceManagementPartnerCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -44679,49 +46381,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementComplianceManagementPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44740,18 +46413,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44770,19 +46444,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44801,18 +46476,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44831,19 +46507,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44862,18 +46539,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44892,19 +46570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44923,18 +46602,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44953,19 +46633,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -44984,19 +46665,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45015,18 +46697,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45045,19 +46728,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45076,19 +46760,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45107,18 +46792,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45137,60 +46823,96 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementCompliancePolicySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45209,19 +46931,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComplianceSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceSettings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45240,18 +46962,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComplianceSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementComplianceSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceSettings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45270,18 +46993,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementComplianceSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -45316,18 +47040,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementConditionalAccessSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigManagerCollectionPolicySummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configManagerCollections/getPolicySummary(policyId='{policyId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45362,19 +47088,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementConfigManagerCollectionPolicySummary", + "OutputType": "IMicrosoftGraphConfigManagerPolicySummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConfigManagerPolicySummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45393,19 +47120,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45424,18 +47151,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45454,19 +47183,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45485,18 +47214,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45515,19 +47246,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicyAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45546,46 +47277,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyJust", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyLatestUpgradeDefaultBaselinePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45604,19 +47339,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45635,18 +47370,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicySetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45665,19 +47402,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45696,19 +47434,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45727,49 +47465,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45788,19 +47497,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45819,18 +47529,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45849,18 +47560,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45879,19 +47591,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45910,18 +47623,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45940,19 +47654,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -45971,19 +47686,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46002,18 +47718,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46032,19 +47749,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46063,19 +47781,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationSettings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46094,18 +47813,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/configurationSettings/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46124,23 +47844,24 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementConfigurationSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -46152,29 +47873,22 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/dataSharingConsents", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -46201,18 +47915,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDataSharingConsent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/dataSharingConsents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/dataSharingConsents/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -46239,49 +47954,59 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDataSharingConsent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDataSharingConsentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/dataSharingConsents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46300,18 +48025,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDepOnboardingSetting" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46330,18 +48056,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDepOnboardingSetting" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46360,19 +48087,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultIoEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultIosEnrollmentProfile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46391,19 +48119,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphDepIosEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingDefaultMacOSEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/defaultMacOsEnrollmentProfile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46422,19 +48151,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphDepMacOSEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/getEncryptionPublicKey", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46453,19 +48183,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46484,18 +48215,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46514,19 +48246,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphEnrollmentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46545,19 +48278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingExpiringVppTokenCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/getExpiringVppTokenCount(expiringBeforeDateTime='{expiringBeforeDateTime}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46576,19 +48310,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46607,18 +48342,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -46637,59 +48373,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [ + { + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredential", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "Uri": "/deviceManagement/derivedCredentials", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredential", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { - "Uri": "/deviceManagement/derivedCredentials/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDerivedCredentialCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46724,19 +48496,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDetectedApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46771,18 +48543,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDetectedApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedAppCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46817,18 +48590,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedAppCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46847,19 +48622,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46878,18 +48653,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -46908,19 +48685,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDetectedAppManagedDeviceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -46955,19 +48733,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceCategory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47002,18 +48780,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceCategory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceCategoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceCategories/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47048,49 +48827,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceCategoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47109,18 +48859,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47139,19 +48890,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47170,18 +48922,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47200,19 +48953,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47231,18 +48985,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47261,18 +49016,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceScheduledToRetire", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/getDevicesScheduledToRetire", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47291,19 +49047,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphRetireScheduledManagedDevice" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47322,18 +49079,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47352,19 +49110,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47383,18 +49142,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47413,19 +49173,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47444,18 +49205,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47474,19 +49236,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47505,19 +49268,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/getNoncompliantDevicesToRetire", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47536,19 +49300,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyNoncompliantDeviceToRetire", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/getNoncompliantDevicesToRetire", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47567,19 +49332,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47598,18 +49364,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47628,19 +49395,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47659,19 +49427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47690,18 +49459,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47720,19 +49490,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47751,19 +49522,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47782,18 +49554,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47812,18 +49585,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47842,19 +49616,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47873,18 +49648,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47903,19 +49679,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47934,19 +49711,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47965,18 +49743,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -47995,19 +49774,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48026,19 +49806,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48057,19 +49838,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48088,18 +49870,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48118,18 +49901,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphDeviceConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAllManagedDeviceCertificateStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48148,19 +49932,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48179,18 +49964,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48209,19 +49995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48240,19 +50027,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48271,18 +50059,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48301,18 +50090,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationConflictSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48331,18 +50121,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48361,19 +50152,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48392,18 +50184,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48422,19 +50215,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48453,18 +50247,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48483,19 +50278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48514,18 +50310,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48544,19 +50341,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48575,19 +50373,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48606,19 +50405,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48637,18 +50437,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48667,19 +50468,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48698,19 +50500,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationGroupAssignmentDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}/deviceConfiguration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48729,18 +50532,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphDeviceConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationIoAvailableUpdateVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/getIosAvailableUpdateVersions", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48759,19 +50563,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIosAvailableUpdateVersion" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48790,18 +50595,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48820,59 +50626,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationProfileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48891,19 +50733,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48922,18 +50764,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48952,32 +50795,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/getTargetedUsersAndDevices", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementDeviceConfigurationTargetedUserAndDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/getTargetedUsersAndDevices", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationTargetedUserAndDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -48996,18 +50841,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49026,19 +50873,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49057,18 +50904,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatus", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49087,19 +50936,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49118,19 +50968,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49165,19 +51016,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49212,18 +51063,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49258,19 +51111,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49305,18 +51158,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49351,19 +51206,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -49398,18 +51253,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementDeviceEnrollmentConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49428,19 +51285,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49459,18 +51316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScript", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49489,19 +51348,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49520,18 +51379,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49550,19 +51411,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49581,18 +51442,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49611,19 +51474,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49642,18 +51505,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49672,19 +51537,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}/managedDevice", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49719,19 +51585,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptDeviceRunStateManagedDevice", + "OutputType": "IMicrosoftGraphManagedDevice" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getGlobalScriptHighestAvailableVersion", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getGlobalScriptHighestAvailableVersion", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49750,19 +51617,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptGlobalScriptHighestAvailableVersion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getRemediationHistory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/getRemediationHistory", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49781,19 +51649,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/getRemediationSummary", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49812,18 +51680,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRemediationSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptRemediationSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49842,19 +51712,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49889,19 +51760,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScript", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceShellScript" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49936,18 +51807,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScript", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceShellScript" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -49982,19 +51855,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50029,18 +51902,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50075,19 +51950,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50122,18 +51997,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50168,19 +52045,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50215,18 +52092,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50261,33 +52140,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptDeviceRunStateManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50322,19 +52203,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50369,18 +52250,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50415,19 +52298,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptGroupAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptRunSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/runSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50462,19 +52346,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptRunSummary", + "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50509,19 +52441,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50556,92 +52489,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/$count", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50660,19 +52550,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/domainJoinConnectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50691,18 +52581,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDomainJoinConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementDomainJoinConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/domainJoinConnectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50721,18 +52612,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementDomainJoinConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEffectivePermission", + "ApiReferenceLink": null, "Uri": "/deviceManagement/getEffectivePermissions", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -50751,34 +52645,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementEffectivePermission", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/getAllElevationRequests", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementElevationRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/getAllElevationRequests", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50797,19 +52692,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50828,18 +52723,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePool", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50858,19 +52755,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50889,18 +52786,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50919,19 +52818,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50950,18 +52849,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -50980,19 +52881,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51011,18 +52912,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51041,19 +52944,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceStateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -51088,19 +52992,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementExchangeConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -51135,18 +53039,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementExchangeConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementExchangeConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -51181,18 +53086,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementExchangeConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -51227,61 +53135,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementExchangeOnPremisePolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51300,19 +53211,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/groupPolicyCategories", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51331,59 +53242,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementGroupPolicyCategory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/{groupPolicyCategory-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/{groupPolicyCategory-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChild", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryChildCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/groupPolicyCategories/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51402,118 +53317,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/{groupPolicyDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/definitionFile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyCategoryParent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51532,18 +53423,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51562,19 +53454,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51593,18 +53486,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51623,19 +53517,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51654,18 +53549,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51684,19 +53580,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51715,18 +53612,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51745,19 +53643,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51776,19 +53675,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValueDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51807,19 +53707,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51838,18 +53739,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51868,19 +53770,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyDefinitions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51899,32 +53802,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category", - "Permissions": [], "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyDefinitions/$count", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51943,18 +53833,34 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/category", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -51973,562 +53879,601 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/{groupPolicyDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionFileDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}/definitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/category", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/category", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/definitionFile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/definitionFile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentationDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/category", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/category", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/definitionFile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/definitionFile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentationDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPresentationDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/category", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/category", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/definitionFile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/definitionFile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/category", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/category", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/definitionFile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/definitionFile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentationDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentationDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52547,18 +54492,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52577,18 +54523,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52607,19 +54554,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52638,18 +54586,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52668,19 +54617,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMappingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52699,19 +54649,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52730,18 +54681,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52760,19 +54712,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtensionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52791,19 +54744,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyObjectFiles", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52822,18 +54776,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyObjectFiles/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52852,18 +54807,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyObjectFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52882,19 +54838,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52913,18 +54870,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -52943,131 +54901,139 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/{groupPolicyDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/definitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", - "Permissions": [ - { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/importedDeviceIdentities", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -53086,18 +55052,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/importedDeviceIdentities/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -53116,18 +55083,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedDeviceIdentityCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -53146,19 +55114,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -53177,18 +55146,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -53207,49 +55177,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentityCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53268,18 +55240,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53298,19 +55271,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53329,18 +55303,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53359,19 +55334,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53390,19 +55366,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53421,18 +55398,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53451,19 +55429,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53482,19 +55461,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53513,18 +55493,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53543,19 +55524,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53574,19 +55556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53605,18 +55588,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53635,19 +55619,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCategorySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53666,18 +55651,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/getCustomizedSettings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53696,19 +55682,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentCustomizedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/getCustomizedSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentCustomizedSetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53727,19 +55714,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentCustomizedSetting" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53758,18 +55746,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53788,19 +55777,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceSettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53819,19 +55809,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53850,18 +55841,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53880,19 +55872,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53911,19 +55904,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53942,19 +55936,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -53973,18 +55968,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54003,19 +55999,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54034,19 +56031,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54065,18 +56063,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54095,19 +56094,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54126,50 +56126,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntentUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -54188,18 +56190,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIntuneBrandingProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -54218,19 +56221,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIntuneBrandingProfile" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -54249,18 +56253,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -54279,19 +56284,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/intuneBrandingProfiles/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -54310,49 +56316,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIntuneBrandingProfileCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/iosUpdateStatuses", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54371,18 +56379,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/iosUpdateStatuses/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54401,18 +56410,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementIoUpdateStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54431,19 +56441,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54462,18 +56473,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54492,19 +56504,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54523,18 +56536,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54553,19 +56567,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54584,19 +56599,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54615,18 +56631,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", - "Variants": [ + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", + "ApiVersion": "beta", + "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54645,19 +56662,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -54676,18 +56694,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -54722,19 +56773,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -54769,127 +56820,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCleanupRuleCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcRemoteActionResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getCloudPcReviewStatus", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -54908,101 +56969,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcReviewStatus", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceCompliancePolicyStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -55037,59 +57104,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceDetectedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/detectedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55108,19 +57180,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDeviceEncryptionStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55139,18 +57211,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDeviceEncryptionStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55169,18 +57242,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDeviceEncryptionStateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceFileVaultKey", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55215,156 +57290,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementManagedDeviceFileVaultKey", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceHealthScriptStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceNonCompliantSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementManagedDeviceOverview", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDeviceOverview", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -55399,199 +57484,181 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementManagedDeviceOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceOverview" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelConfigurations", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55610,18 +57677,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelConfigurations/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55640,18 +57708,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55670,19 +57739,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55701,18 +57771,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55731,18 +57802,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelHealthThresholdCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55761,19 +57833,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55792,18 +57865,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55822,18 +57896,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55852,19 +57927,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55883,18 +57959,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSite", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55913,18 +57990,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55943,19 +58021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -55974,19 +58053,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56005,18 +58085,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56035,19 +58116,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56066,21 +58148,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphKeyLongValuePair", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56099,21 +58182,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", + "OutputType": "IMicrosoftGraphKeyLongValuePair" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerHealthMetricTimeSeries", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/getHealthMetricTimeSeries", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphMetricTimeSeriesDataPoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56132,19 +58248,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56163,18 +58279,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56209,19 +58327,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56256,18 +58374,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56302,19 +58422,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -56333,18 +58453,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMobileAppTroubleshootingEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56379,19 +58501,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56426,18 +58548,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56472,31 +58595,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementMobileThreatDefenseConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoring", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementMonitoring", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementMonitoring" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56515,19 +58641,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRecords", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56546,18 +58672,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecord", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRecords/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56576,18 +58703,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordPortalNotification", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRecords/getPortalNotifications", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56606,18 +58734,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRecordPortalNotification", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPortalNotification", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementPortalNotification" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56636,19 +58766,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRules", + "ApiVersion": "beta", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/monitoring/alertRules", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56667,18 +58797,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementMonitoringAlertRuleCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/monitoring/alertRules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -56697,18 +58828,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementMonitoringAlertRuleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNdeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56727,19 +58860,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementNdeConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNdesConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNdeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/ndesConnectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56758,18 +58891,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementNdeConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNdesConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNdeConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/ndesConnectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -56788,18 +58922,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementNdeConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56818,19 +58954,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56849,18 +58985,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56879,18 +59016,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56909,19 +59048,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56940,18 +59079,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -56970,19 +59111,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyApprovableOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalPolicies/getApprovableOperations", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Retrieve" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57017,19 +59159,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyApprovableOperation", + "OutputType": "IMicrosoftGraphOperationApprovalPolicySet" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyOperationRequiringApproval", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/operationApprovalPolicies/getOperationsRequiringApproval", + "ApiVersion": "beta", "Variants": [ "Get", "Retrieve" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOperationApprovalPolicySet", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/operationApprovalPolicies/getOperationsRequiringApproval", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57064,19 +59207,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementOperationApprovalPolicyOperationRequiringApproval", - "Variants": [ - "Get", - "Retrieve" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOperationApprovalPolicySet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOperationApprovalPolicySet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequests", + "ApiVersion": "beta", + "Variants": [ + "Retrieve" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57111,18 +59254,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequest", - "Variants": [ - "Retrieve" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOperationApprovalRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOperationApprovalRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequestById", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/retrieveMyRequestById(id='{id}')", + "ApiVersion": "beta", + "Variants": [ + "Retrieve", + "RetrieveViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57157,33 +59302,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestMyRequestById", - "Variants": [ - "Retrieve", - "RetrieveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOperationApprovalRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOperationApprovalRequest" }, { - "Uri": "/deviceManagement/operationApprovalRequests/retrieveRequestStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementOperationApprovalRequestStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/operationApprovalRequests/retrieveRequestStatus", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOperationApprovalRequestEntityStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOperationApprovalRequestEntityStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57218,19 +59365,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57265,18 +59412,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementPartner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementPartnerCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57311,18 +59459,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57357,19 +59507,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteActionAudits", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57404,18 +59554,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementRemoteActionAudit", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteActionAudit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteActionAuditCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteActionAudits/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57450,18 +59601,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementRemoteActionAuditCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57496,19 +59649,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57543,18 +59696,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartnerCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteAssistancePartners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -57589,18 +59743,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRemoteAssistancePartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57667,74 +59822,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReport", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementReports", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "Uri": "/deviceManagement/reports/getActiveMalwareReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportActiveMalwareReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getActiveMalwareReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getActiveMalwareSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportActiveMalwareSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getActiveMalwareSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getAppsInstallSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportAppInstallSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getAppsInstallSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getAppStatusOverviewReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportAppStatusOverviewReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getAppStatusOverviewReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportCachedReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getCachedReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57785,19 +59946,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportCachedReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/cachedReportConfigurations/{deviceManagementCachedReportConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57848,19 +60010,82 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", + "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/cachedReportConfigurations", + "ApiVersion": "beta", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration" }, { - "Uri": "/deviceManagement/reports/cachedReportConfigurations", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReportCachedReportConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/cachedReportConfigurations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -57911,108 +60136,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReportCachedReportConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCachedReportConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/cachedReportConfigurations/$count", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReportCachedReportConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getCompliancePolicyDevicesReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getCompliancePolicyDevicesReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getCompliancePolicyDeviceSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyDeviceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getCompliancePolicyDeviceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58063,19 +60230,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58126,47 +60294,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getCompliancePoliciesReportForDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportCompliancePolicyReportForDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getCompliancePoliciesReportForDevice", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getComplianceSettingDetailsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportComplianceSettingDetailReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getComplianceSettingDetailsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportComplianceSettingNonComplianceReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58217,75 +60388,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportComplianceSettingNonComplianceReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getComplianceSettingsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportComplianceSettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getComplianceSettingsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigManagerDevicePolicyStatusReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigManagerDevicePolicyStatusReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigManagerDevicePolicyStatusReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationPolicyDevicesReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationPolicyDevicesReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyDeviceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationPolicyDeviceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58336,19 +60512,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58399,61 +60576,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationPoliciesReportForDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicyReportForDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationPoliciesReportForDevice", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationPolicySettingsDeviceSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationPolicySettingDeviceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationPolicySettingsDeviceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationSettingDetailsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingDetailReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationSettingDetailsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingNonComplianceReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58504,75 +60685,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingNonComplianceReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getConfigurationSettingsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportConfigurationSettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getConfigurationSettingsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicySettingsSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicySettingSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicySettingsSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicyStatusSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceConfigurationPolicyStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceConfigurationPolicyStatusSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDeviceInstallStatusReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportDeviceInstallStatusReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceInstallStatusReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58623,19 +60809,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentSettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58686,19 +60873,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceManagementIntentSettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceNonComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58749,19 +60937,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDevicePolicyComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDevicePoliciesComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDevicePoliciesComplianceReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58812,19 +61001,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDevicePolicyComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDevicePolicySettingComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDevicePolicySettingsComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDevicePolicySettingsComplianceReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58875,19 +61065,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDevicePolicySettingComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliacePolicyReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceStatusByCompliacePolicyReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDeviceStatusByCompliacePolicyReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -58938,19 +61129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliacePolicyReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliancePolicySettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceStatusByCompliancePolicySettingReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDeviceStatusByCompliancePolicySettingReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59001,19 +61193,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByCompliancePolicySettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByPolicyPlatformComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDevicesStatusByPolicyPlatformComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getDevicesStatusByPolicyPlatformComplianceReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59064,19 +61257,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusByPolicyPlatformComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusBySettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDevicesStatusBySettingReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDevicesStatusBySettingReport", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliacePolicyReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliacePolicyReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59127,19 +61385,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusBySettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliancePolicySettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliancePolicySettingsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliacePolicyReport", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportDeviceWithoutCompliancePolicyReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59190,19 +61513,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliacePolicyReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportEncryptionReportForDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getEncryptionReportForDevices", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, "Method": "POST", - "ApiReferenceLink": null + "Command": "Get-MgBetaDeviceManagementReportEnrollmentConfigurationPolicyByDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getEnrollmentConfigurationPoliciesByDevice", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getDeviceStatusSummaryByCompliancePolicySettingsReport", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59253,19 +61607,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceStatusSummaryByCompliancePolicySettingReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/exportJobs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59316,47 +61670,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportDeviceWithoutCompliancePolicyReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { - "Uri": "/deviceManagement/reports/getEncryptionReportForDevices", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportEncryptionReportForDevice", - "Variants": [ - "Get", - "GetExpanded" - ], + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReportExportJobCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/exportJobs/$count", "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getEnrollmentConfigurationPoliciesByDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportEnrollmentConfigurationPolicyByDevice", "Variants": [ - "Get", - "GetExpanded" + "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}", + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59407,19 +61733,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReportExportJob", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getFailedMobileAppsReport", + "ApiVersion": "beta", "Variants": [ "Get", - "GetViaIdentity" + "GetExpanded" ], + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getFailedMobileAppsSummaryReport", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", - "Method": "GET", - "ApiReferenceLink": null + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/exportJobs", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getReportFilters", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59470,18 +61827,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReportExportJob", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportGroupPolicySettingDeviceSettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getGroupPolicySettingsDeviceSettingsReport", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/exportJobs/$count", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportHistoricalReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getHistoricalReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59532,46 +61923,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaDeviceManagementReportExportJobCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getFailedMobileAppsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppReport", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportMalwareSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getMalwareSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getFailedMobileAppsSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportFailedMobileAppSummaryReport", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppConfigurationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppConfigurationReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getReportFilters", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59581,22 +61961,6 @@ "PermissionType": "Application", "IsLeastPrivilege": true }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, { "Name": "DeviceManagementConfiguration.ReadWrite.All", "Description": "Read and write Microsoft Intune device configuration and policies", @@ -59622,19 +61986,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportFilter", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppRegistrationSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppRegistrationSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getGroupPolicySettingsDeviceSettingsReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59651,21 +62016,38 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportGroupPolicySettingDeviceSettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportNoncompliantDeviceAndSettingReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getHistoricalReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59716,33 +62098,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportHistoricalReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getMalwareSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportMalwareSummaryReport", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceMetadata", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppConfigurationReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59753,51 +62122,20 @@ "IsLeastPrivilege": true }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppConfigurationReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getMobileApplicationManagementAppRegistrationSummaryReport", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true }, { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -59824,19 +62162,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportMobileApplicationManagementAppRegistrationSummaryReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59887,19 +62226,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportNoncompliantDeviceAndSettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -59950,187 +62290,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceMetadata", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportPolicyNonComplianceSummaryReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, + "CommandAlias": null, "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getQuietTimePolicyUsersReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportQuietTimePolicyUserSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getQuietTimePolicyUserSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportRelatedAppStatusReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getRelatedAppsStatusReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportRemoteAssistanceSessionReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getRemoteAssistanceSessionsReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60165,19 +62383,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportRemoteAssistanceSessionReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportSettingNonComplianceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60228,159 +62447,170 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportSettingNonComplianceReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getUnhealthyDefenderAgentsReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyDefenderAgentReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getUnhealthyDefenderAgentsReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getUnhealthyFirewallReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getUnhealthyFirewallReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getUnhealthyFirewallSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUnhealthyFirewallSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getUnhealthyFirewallSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getUserInstallStatusReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportUserInstallStatusReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getUserInstallStatusReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertsPerPolicyPerDeviceReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertPerPolicyPerDeviceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertsPerPolicyPerDeviceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsDriverUpdateAlertSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsDriverUpdateAlertSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertPerPolicyPerDeviceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertsPerPolicyPerDeviceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsQualityUpdateAlertSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsQualityUpdateAlertSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsUpdateAlertsPerPolicyPerDeviceReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertPerPolicyPerDeviceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsUpdateAlertsPerPolicyPerDeviceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reports/getWindowsUpdateAlertSummaryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReportWindowsUpdateAlertSummaryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports/getWindowsUpdateAlertSummaryReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementReportZebraFotaDeploymentReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/getZebraFotaDeploymentReport", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60399,19 +62629,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementReportZebraFotaDeploymentReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60430,19 +62661,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60461,18 +62692,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60491,19 +62724,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60522,18 +62755,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60552,19 +62787,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfileAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceAccessProfileCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceAccessProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -60583,18 +62818,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementResourceAccessProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -60629,19 +62866,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementResourceOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -60676,18 +62913,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementResourceOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceOperationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -60722,18 +62960,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementResourceOperationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementResourceOperationScopeForUser", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}/getScopesForUser(userid='{userid}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60768,47 +63008,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementResourceOperationScopeForUser", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyJust", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveJustInTimeConfiguration", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationJustInTimeAssignmentPolicy" }, { - "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementReusablePolicySettingReferencingConfigurationPolicyLatestUpgradeDefaultBaselinePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/retrieveLatestUpgradeDefaultBaselinePolicy", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReusableSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60827,19 +63070,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementReusableSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReusableSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reusableSettings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60858,18 +63101,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementReusableSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementReusableSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reusableSettings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -60888,18 +63132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementReusableSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -60934,19 +63180,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -60981,18 +63227,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61027,73 +63274,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleDefinition" }, { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/{roleScopeTag-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleAssignmentRoleScopeTagCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleScopeTags/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61128,19 +63381,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61175,18 +63428,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61221,18 +63475,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61267,19 +63523,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61314,18 +63570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61360,19 +63618,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -61407,19 +63666,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", + "OutputType": "IMicrosoftGraphRoleDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61454,19 +63714,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleScopeTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61501,87 +63761,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleScopeTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/getRoleScopeTagsByIds(ids={ids})", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagById", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/getRoleScopeTagsByIds(ids={ids})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/getRoleScopeTagsByResource(resource='{resource}')", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementRoleScopeTagByResource", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/getRoleScopeTagsByResource(resource='{resource}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementRoleScopeTagCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61616,18 +63882,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementRoleScopeTagCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementRoleScopeTagRoleScopeTagById", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags/getRoleScopeTagsById", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61662,46 +63930,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementRoleScopeTagRoleScopeTagById", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "Uri": "/deviceManagement/deviceManagementScripts", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61736,19 +64007,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61783,18 +64054,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61829,32 +64102,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceManagementScripts/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementScriptCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61889,19 +64164,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61936,18 +64211,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptDeviceRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -61982,19 +64259,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}/managedDevice", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62029,19 +64307,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptDeviceRunStateManagedDevice", + "OutputType": "IMicrosoftGraphManagedDevice" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62076,19 +64355,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62123,18 +64402,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptGroupAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptGroupAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62169,19 +64450,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptGroupAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptRunSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/runSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62216,19 +64498,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptRunSummary", + "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptRunSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62263,19 +64546,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptUserRunState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptUserRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62310,18 +64593,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptUserRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptUserRunStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62356,19 +64641,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptUserRunStateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62403,19 +64689,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62450,18 +64736,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementSettingDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62480,19 +64768,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementSettingDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementSettingDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/settingDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62511,18 +64799,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementSettingDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementSettingDefinitionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/settingDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62541,18 +64830,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementSettingDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/softwareUpdateStatusSummary", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62571,18 +64861,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementSoftwareUpdateStatusSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementSuggestedEnrollmentLimit", + "ApiReferenceLink": null, "Uri": "/deviceManagement/getSuggestedEnrollmentLimit(enrollmentType='{enrollmentType}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -62601,19 +64893,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementSuggestedEnrollmentLimit", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -62632,19 +64925,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -62663,18 +64956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartnerCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/telecomExpenseManagementPartners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -62693,49 +64987,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementTelecomExpenseManagementPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62754,18 +65019,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62784,19 +65050,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62815,18 +65082,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62845,19 +65113,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62876,19 +65145,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62907,18 +65177,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62937,19 +65208,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategoryRecommendedSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62968,19 +65240,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -62999,18 +65272,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63029,19 +65303,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCategorySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63060,18 +65335,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63090,19 +65366,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63121,141 +65398,183 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63274,60 +65593,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTemplateMigratableToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTemplateMigratableToSettingCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTemplateSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63346,19 +65669,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTemplateSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTemplateSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63377,18 +65700,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTemplateSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTemplateSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63407,19 +65732,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTemplateSettingCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTenantAttachRbacState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/tenantAttachRBAC/getState", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -63454,49 +65779,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementTenantAttachRbacState", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", - "Permissions": [ - { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63515,18 +65811,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63545,19 +65842,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63576,18 +65874,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63606,19 +65905,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63637,19 +65937,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63668,19 +65969,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63699,18 +66001,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63729,19 +66032,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63760,18 +66064,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63790,19 +66095,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63821,18 +66127,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/$count", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63851,19 +66158,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -63882,19 +66190,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementTermAndConditionGroupAssignmentTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}/termsAndConditions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [ + { + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphTermsAndConditions" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -63913,19 +66254,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -63944,18 +66285,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTroubleshootingEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementTroubleshootingEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -63974,18 +66316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementTroubleshootingEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/{userExperienceAnalyticsAnomaly-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64020,19 +66364,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64067,58 +66411,62 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverviewCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64153,18 +66501,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64199,19 +66549,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64246,18 +66596,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64292,18 +66643,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64338,19 +66691,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64385,18 +66738,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64431,19 +66786,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64478,18 +66833,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -64524,65 +66880,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64617,18 +66928,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64663,18 +66975,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64709,19 +67022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64756,18 +67070,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64802,18 +67117,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64848,19 +67164,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64895,18 +67212,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64941,18 +67259,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -64987,18 +67306,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65033,19 +67353,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65080,18 +67401,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65126,18 +67448,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65172,19 +67495,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65219,18 +67543,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65265,18 +67590,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65311,19 +67637,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65358,18 +67685,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65404,18 +67732,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65450,19 +67779,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65497,64 +67827,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65589,58 +67874,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", - "Variants": [ - "List" - ], + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65675,19 +67921,110 @@ "IsLeastPrivilege": false } ], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65722,18 +68059,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65768,19 +68106,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65815,19 +68154,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65862,19 +68202,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65909,18 +68250,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -65955,19 +68297,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -66002,19 +68345,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -66049,19 +68393,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -66096,19 +68441,68 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66143,19 +68537,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66190,18 +68584,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpactCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66236,18 +68631,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpactCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66282,18 +68678,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66328,19 +68726,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66375,18 +68773,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpactCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66421,18 +68820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpactCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66467,19 +68868,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66514,18 +68915,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66560,18 +68962,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66606,19 +69010,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66653,18 +69057,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66699,18 +69104,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66745,19 +69152,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66792,18 +69199,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66838,18 +69246,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66884,19 +69294,66 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "ApiVersion": "beta", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -66931,64 +69388,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/$count", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformanceCount", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67023,18 +69435,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67069,86 +69483,92 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValueCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67183,19 +69603,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67230,18 +69650,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67276,18 +69697,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67322,19 +69745,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67369,18 +69792,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67415,18 +69839,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67461,20 +69888,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67509,18 +69935,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScopeCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -67555,18 +69982,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScopeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67601,19 +70030,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67648,18 +70077,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScoreCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67694,18 +70124,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceScoreCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67740,19 +70172,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67787,18 +70219,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67833,18 +70266,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67879,19 +70314,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67926,18 +70361,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -67972,18 +70408,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68018,19 +70456,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68065,18 +70503,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68111,58 +70550,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEventCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68197,19 +70641,66 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "ApiVersion": "beta", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentityCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68244,64 +70735,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/$count", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentityCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68336,19 +70783,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68383,18 +70830,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcessCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68429,18 +70877,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcessCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68475,19 +70925,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68522,18 +70972,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68568,18 +71019,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticMetricHistoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68614,19 +71067,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68661,18 +71114,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScore", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScoreCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68707,18 +71161,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticModelScoreCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68753,19 +71209,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68800,18 +71256,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68846,18 +71303,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -68892,18 +71350,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68938,19 +71398,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -68985,18 +71445,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnectionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69031,18 +71492,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69077,19 +71540,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69124,18 +71587,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69170,18 +71634,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69216,19 +71682,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69263,18 +71729,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69309,18 +71776,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticScoreHistoryCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69355,18 +71871,66 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "beta", "Variants": [ - "Get" + "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69401,19 +71965,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69448,18 +72013,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/$count", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69494,18 +72060,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69540,112 +72108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/$count", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69680,19 +72156,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69727,18 +72203,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -69773,18 +72250,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69803,19 +72282,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userPfxCertificates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69834,18 +72313,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementUserPfxCertificate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementUserPfxCertificateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userPfxCertificates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -69864,31 +72344,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementUserPfxCertificateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpoint", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69907,19 +72390,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/auditEvents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69938,18 +72421,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcAuditEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventAuditActivityType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69968,18 +72452,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventAuditActivityType", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/auditEvents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -69998,58 +72483,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointAuditEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointBulkActionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70068,19 +72558,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPc" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/cloudPCs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70099,18 +72589,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPc", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPc" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcConnectivityHistory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcConnectivityHistory", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70129,19 +72621,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcConnectivityHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70160,46 +72652,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcFrontlineCloudPcAccessState", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcLaunchInfo", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcLaunchInfo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getCloudPcLaunchInfo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcLaunchInfo", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcLaunchInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcProvisionedCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/getProvisionedCloudPCs(groupId='{groupId}',servicePlanId='{servicePlanId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70218,33 +72714,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcProvisionedCloudPc", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPc" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcShiftWorkCloudPcAccessState", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcSupportedCloudPcRemoteAction", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/getSupportedCloudPcRemoteActions", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70263,19 +72761,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCloudPcSupportedCloudPcRemoteAction", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70294,18 +72792,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70324,19 +72824,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70355,18 +72855,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/deviceImages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70385,18 +72886,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageSourceImage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70415,18 +72917,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointDeviceImageSourceImage", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointEffectivePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-geteffectivepermissions?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/getEffectivePermissions", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70445,18 +72948,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointEffectivePermission", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-geteffectivepermissions?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70475,19 +72980,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70506,18 +73011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70536,58 +73042,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointExternalPartnerSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlanCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70606,19 +73117,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70637,18 +73148,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/galleryImages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70667,18 +73179,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointGalleryImageCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70697,19 +73211,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70728,18 +73242,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70758,18 +73273,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -70788,18 +73304,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70818,19 +73336,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -70849,141 +73367,151 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71002,101 +73530,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcReports", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcReports" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getActionStatusReports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportActionStatusReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getactionstatusreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getActionStatusReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getactionstatusreports?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcPerformanceReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcPerformanceReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcPerformanceReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcRecommendationReports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCloudPcRecommendationReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getCloudPcRecommendationReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getcloudpcrecommendationreports?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getConnectionQualityReports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportConnectionQualityReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getConnectionQualityReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getconnectionqualityreports?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/retrieveCrossRegionDisasterRecoveryReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportCrossRegionDisasterRecoveryReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/retrieveCrossRegionDisasterRecoveryReport", + "ApiVersion": "beta", "Variants": [ "Retrieve", "RetrieveExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportDailyAggregatedRemoteConnectionReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/reports/getDailyAggregatedRemoteConnectionReports", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71115,129 +73651,138 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportDailyAggregatedRemoteConnectionReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getdailyaggregatedremoteconnectionreports?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExportJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExportJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportExportJobCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getFrontlineReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportFrontlineReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getfrontlinereport?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getFrontlineReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getfrontlinereport?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getInaccessibleCloudPcReports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportInaccessibleCloudPcReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getInaccessibleCloudPcReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getinaccessiblecloudpcreports?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRawRemoteConnectionReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getRawRemoteConnectionReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrawremoteconnectionreports?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionLatency(cloudPcId='{cloudPcId}')", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionLatency", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionlatency?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionLatency(cloudPcId='{cloudPcId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionlatency?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionStatus(cloudPcId='{cloudPcId}')", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRealTimeRemoteConnectionStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getRealTimeRemoteConnectionStatus(cloudPcId='{cloudPcId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getrealtimeremoteconnectionstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRemoteConnectionHistoricalReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/reports/getRemoteConnectionHistoricalReports", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71256,19 +73801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportRemoteConnectionHistoricalReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportSharedUseLicenseUsageReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getremoteconnectionhistoricalreports?view=graph-rest-beta" - }, - { - "Uri": "/deviceManagement/virtualEndpoint/reports/getSharedUseLicenseUsageReport", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71287,19 +73833,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportSharedUseLicenseUsageReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportTotalAggregatedRemoteConnectionReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/reports/getTotalAggregatedRemoteConnectionReports", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-getshareduselicenseusagereport?view=graph-rest-beta" - }, - { - "Uri": "/deviceManagement/virtualEndpoint/reports/getTotalAggregatedRemoteConnectionReports", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71318,46 +73865,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointReportTotalAggregatedRemoteConnectionReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcreports-gettotalaggregatedremoteconnectionreports?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/retrieveScopedPermissions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointScopedPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-retrievescopedpermissions?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/retrieveScopedPermissions", + "ApiVersion": "beta", "Variants": [ "Retrieve" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcScopedPermission", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualendpoint-retrievescopedpermissions?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcScopedPermission" }, { - "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/servicePlans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71376,18 +73925,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlanCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/servicePlans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71406,18 +73956,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointServicePlanCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71436,19 +73988,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71467,18 +74019,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlanCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71497,18 +74050,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlanCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71527,19 +74082,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSnapshot", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/snapshots", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71558,18 +74113,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshot", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSnapshot", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/snapshots/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71588,18 +74144,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotStorageAccount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getstorageaccounts?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/snapshots/getStorageAccounts(subscriptionId='{subscriptionId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71618,19 +74176,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotStorageAccount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcForensicStorageAccount", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getstorageaccounts?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcForensicStorageAccount" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getsubscriptions?view=graph-rest-beta", "Uri": "/deviceManagement/virtualEndpoint/snapshots/getSubscriptions", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71649,32 +74207,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSnapshotSubscription", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSubscription", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcsnapshot-getsubscriptions?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCloudPcSubscription" }, { - "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/supportedRegions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71693,18 +74253,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71723,31 +74284,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointSupportedRegionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/retrieveTenantEncryptionSetting", - "Permissions": [], - "Module": "Beta.DeviceManagement.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointTenantEncryptionSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/retrieveTenantEncryptionSetting", + "ApiVersion": "beta", "Variants": [ "Retrieve" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcTenantEncryptionSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcTenantEncryptionSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71766,19 +74330,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71797,59 +74361,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -71868,18 +74436,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Get-MgBetaDeviceManagementVirtualEndpointUserSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -71898,19 +74468,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -71929,128 +74499,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/deploymentProfile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceIntendedDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72069,18 +74648,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72099,19 +74680,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72130,18 +74711,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72160,18 +74742,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeploymentProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/deploymentProfile", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72190,19 +74774,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeploymentProfile", + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityIntendedDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/intendedDeploymentProfile", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72221,19 +74806,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityIntendedDeploymentProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsAutopilotSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -72252,18 +74837,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsAutopilotSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72282,19 +74869,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72313,18 +74900,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72343,19 +74932,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72374,18 +74963,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72404,19 +74995,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72435,18 +75026,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaDeviceManagementWindowsFeatureUpdateProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72465,19 +75058,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72496,18 +75089,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72526,18 +75120,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72556,19 +75152,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72587,18 +75183,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -72617,18 +75214,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72663,19 +75262,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72710,18 +75309,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72756,18 +75356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72802,19 +75404,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72849,18 +75451,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -72895,19 +75499,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72926,19 +75531,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsQualityUpdateProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72957,18 +75562,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -72987,19 +75594,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -73018,18 +75625,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -73048,19 +75657,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsQualityUpdateProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -73079,18 +75688,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Get-MgBetaDeviceManagementWindowsQualityUpdateProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/devices/{device-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -73173,21 +75786,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDeviceMemberObject", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/devices/{device-id}/getMemberObjects", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -73286,35 +75900,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOf", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceMemberOf", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/memberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73349,72 +75962,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/devices/{device-id}/memberOf/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceMemberOfCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/memberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73449,47 +76068,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredOwner", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73524,99 +76145,106 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredOwner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredOwners/endpoint", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/devices/{device-id}/registeredOwners/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73651,18 +76279,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredOwnerCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73697,61 +76327,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/user/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredUser", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73786,99 +76419,106 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredUsers/endpoint", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/devices/{device-id}/registeredUsers/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredUserByRef", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73913,18 +76553,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceRegisteredUserCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -73959,75 +76601,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceRegisteredUserCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/user/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceRegisteredUserCountAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/transitiveMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -74062,72 +76708,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -74162,61 +76814,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceUsageRights", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/usageRights", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -74251,18 +76906,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceUsageRights", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUsageRight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDeviceUsageRightsCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/usageRights/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -74297,46 +76954,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDeviceUsageRightsCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDeviceUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/devices/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectory", + "ApiReferenceLink": null, + "Uri": "/directory", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74371,19 +77031,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74418,18 +77078,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnit", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitCount", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74464,18 +77125,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta", "Uri": "/directory/administrativeUnits/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74510,59 +77172,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitExtensionCount", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74597,32 +77263,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74657,32 +77325,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsApplication", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74717,32 +77387,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74777,32 +77449,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74837,32 +77511,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsOrgContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -74897,78 +77573,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user", - "Permissions": [ - { - "Name": "AdministrativeUnit.Read.All", - "Description": "Read all administrative units", - "FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "AdministrativeUnit.ReadWrite.All", - "Description": "Read and write all administrative units", - "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75003,18 +77635,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": "IMicrosoftGraphUser" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75049,19 +77682,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCount", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75096,19 +77730,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75143,19 +77778,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75190,19 +77826,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75237,19 +77874,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75284,19 +77922,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -75331,36 +77970,29 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { - "Name": "RoleManagement.Read.Directory", - "Description": "Read all directory RBAC settings", - "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", + "Name": "AdministrativeUnit.Read.All", + "Description": "Read all administrative units", + "FullDescription": "Allows the app to read administrative units and administrative unit membership without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, - { - "Name": "RoleManagement.ReadWrite.Directory", - "Description": "Read and write all directory RBAC settings", - "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", @@ -75376,67 +78008,30 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", - "Permissions": [ - { - "Name": "RoleManagement.Read.Directory", - "Description": "Read all directory RBAC settings", - "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true }, { - "Name": "RoleManagement.ReadWrite.Directory", - "Description": "Read and write all directory RBAC settings", - "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", + "Name": "AdministrativeUnit.ReadWrite.All", + "Description": "Read and write all administrative units", + "FullDescription": "Allows the app to create, read, update, and delete administrative units and manage administrative unit membership without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -75471,19 +78066,115 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphScopedRoleMembership" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "RoleManagement.Read.Directory", + "Description": "Read all directory RBAC settings", + "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagement.ReadWrite.Directory", + "Description": "Read and write all directory RBAC settings", + "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphScopedRoleMembership" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryAdministrativeUnitScopedRoleMemberCount", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "RoleManagement.Read.Directory", + "Description": "Read all directory RBAC settings", + "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagement.ReadWrite.Directory", + "Description": "Read and write all directory RBAC settings", + "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAttributeSet", + "ApiReferenceLink": null, "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75502,19 +78193,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAttributeSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttributeSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAttributeSet", + "ApiReferenceLink": null, "Uri": "/directory/attributeSets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75533,18 +78224,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAttributeSet", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttributeSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryAttributeSetCount", + "ApiReferenceLink": null, "Uri": "/directory/attributeSets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75563,143 +78255,223 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryAttributeSetCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/certificateAuthorities", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityPath", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCertificateAuthorityPath" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthorityCount", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { - "Name": "CustomSecAttributeDefinition.Read.All", - "Description": "Read custom security attribute definitions", - "FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.", + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true }, { - "Name": "CustomSecAttributeDefinition.ReadWrite.All", - "Description": "Read and write custom security attribute definitions", - "FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.", + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75718,18 +78490,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75748,19 +78521,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75779,18 +78553,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": "IMicrosoftGraphAllowedValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75809,19 +78584,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": "IMicrosoftGraphAllowedValue" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValueCount", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/customSecurityAttributeDefinitions/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -75840,478 +78616,531 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryCustomSecurityAttributeDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "CustomSecAttributeDefinition.Read.All", + "Description": "Read custom security attribute definitions", + "FullDescription": "Allows the app to read custom security attribute definitions for the tenant without a signed in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "CustomSecAttributeDefinition.ReadWrite.All", + "Description": "Read and write custom security attribute definitions", + "FullDescription": "Allows the app to read and write custom security attribute definitions for the tenant without a signed in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItem", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedAdministrativeUnit", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/deletedItems/administrativeUnit", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedAdministrativeUnit", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedApplication", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/deletedItems/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedApplication", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedDevice", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/deletedItems/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedDevice", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedGroup", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/deletedItems/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedGroup", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedServicePrincipal", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/deletedItems/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedServicePrincipal", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedUser", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directory/deletedItems/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Get-MgBetaDirectoryDeletedUser", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directory/deletedItems/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/directory/deletedItems/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/deletedItems/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/application/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/application/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/device/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/device/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/group/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/user/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeletedItemCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/user/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryDeletedItemMemberObject", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/deviceLocalCredentials", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/deviceLocalCredentials/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryDeviceLocalCredentialCount", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "Uri": "/directory/externalUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "Uri": "/directory/externalUserProfiles/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryExternalUserProfileCount", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/directory/featureRolloutPolicies", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyTo", - "Variants": [ - "List" - ], + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyApplyToCount", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/featureRolloutPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryFeatureRolloutPolicyCount", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -76330,19 +79159,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryFederationConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -76361,18 +79190,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryFederationConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryFederationConfigurationCount", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -76391,58 +79221,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryFederationConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/impactedResources/{impactedResource-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/impactedResources", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/impactedResources/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryImpactedResourceCount", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", + "ApiReferenceLink": null, "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -76477,19 +79312,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", + "ApiReferenceLink": null, "Uri": "/directory/inboundSharedUserProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read.All", @@ -76508,18 +79343,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryInboundSharedUserProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryInboundSharedUserProfileCount", + "ApiReferenceLink": null, "Uri": "/directory/inboundSharedUserProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read.All", @@ -76538,85 +79374,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryInboundSharedUserProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-beta", + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-beta" + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects/getByIds", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryObjectById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/directoryObjects/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects/$count", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryObjectCount", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryObjects/delta", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryObjectDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", + "Uri": "/directoryObjects/delta", + "ApiVersion": "beta", "Variants": [ "Delta" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta" + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDirectoryObjectMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -76699,21 +79544,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DirectoryObjects", - "Command": "Get-MgBetaDirectoryObjectMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaDirectoryObjectMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "Module": "Beta.DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -76812,49 +79658,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DirectoryObjects", - "Command": "Get-MgBetaDirectoryObjectMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryObjects/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryObjectUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/directoryObjects/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, "Uri": "/directory/onPremisesSynchronization", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OnPremDirectorySynchronization.Read.All", @@ -76873,18 +79719,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOnPremiseSynchronization", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOnPremiseSynchronizationCount", + "ApiReferenceLink": null, "Uri": "/directory/onPremisesSynchronization/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OnPremDirectorySynchronization.Read.All", @@ -76903,18 +79750,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOnPremiseSynchronizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", + "ApiReferenceLink": null, "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -76949,19 +79798,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", + "ApiReferenceLink": null, "Uri": "/directory/outboundSharedUserProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -76996,18 +79845,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOutboundSharedUserProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileCount", + "ApiReferenceLink": null, "Uri": "/directory/outboundSharedUserProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -77042,32 +79892,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant", + "ApiReferenceLink": null, "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -77102,18 +79954,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantReference", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTenantReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenantCount", + "ApiReferenceLink": null, "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.Read", @@ -77148,59 +80002,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryOutboundSharedUserProfileTenantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPendingExternalUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "Uri": "/directory/pendingExternalUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPendingExternalUserProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "Uri": "/directory/pendingExternalUserProfiles/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryPendingExternalUserProfileCount", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendation", + "ApiReferenceLink": null, "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77219,19 +80077,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRecommendation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendation", + "ApiReferenceLink": null, "Uri": "/directory/recommendations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77250,18 +80108,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRecommendation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendationCount", + "ApiReferenceLink": null, "Uri": "/directory/recommendations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77280,18 +80139,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": null, "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77310,19 +80171,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphImpactedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": null, "Uri": "/directory/recommendations/{recommendation-id}/impactedResources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77341,18 +80202,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendationImpactedResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphImpactedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRecommendationImpactedResourceCount", + "ApiReferenceLink": null, "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DirectoryRecommendations.Read.All", @@ -77371,19 +80234,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRecommendationImpactedResourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta", + "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryRoles/{directoryRole-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77418,19 +80282,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRole", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-beta", "Uri": "/directoryRoles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77465,32 +80329,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRole", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/directoryRoles/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleByRoleTemplateId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta", "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77525,19 +80392,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleByRoleTemplateId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77572,18 +80439,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-beta", "Uri": "/directoryRoles/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77618,18 +80486,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleMember", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77664,180 +80533,193 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/application", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/device", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/group", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/user", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleMemberByRef", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77872,18 +80754,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleMemberCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -77918,149 +80802,158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleScopedMember", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78095,18 +80988,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleScopedMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleScopedMemberCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78141,19 +81036,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleScopedMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78188,19 +81084,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-beta", "Uri": "/directoryRoleTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78235,32 +81131,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "Uri": "/directoryRoleTemplates/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleTemplateCount", + "ApiReferenceLink": null, "Uri": "/directoryRoleTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78295,18 +81193,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectoryRoleTemplateDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", "Uri": "/directoryRoleTemplates/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -78341,78 +81240,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectoryRoleTemplateDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleTemplateUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryRoles/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectoryRoleUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/directoryRoles/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-get?view=graph-rest-beta", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78447,19 +81352,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectorySetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-settings?view=graph-rest-beta", "Uri": "/settings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78494,18 +81399,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list-settings?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectorySetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySettingTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-get?view=graph-rest-beta", "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78524,19 +81431,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySettingTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySettingTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-list?view=graph-rest-beta", "Uri": "/directorySettingTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78555,32 +81462,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySettingTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysettingtemplate-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "Uri": "/directorySettingTemplates/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/directorySettingTemplates/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySettingTemplateCount", + "ApiReferenceLink": null, "Uri": "/directorySettingTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78599,18 +81508,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySettingTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDirectorySettingTemplateDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta", "Uri": "/directorySettingTemplates/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -78629,172 +81539,185 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDirectorySettingTemplateDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateMemberObject", + "ApiReferenceLink": null, + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directorySettingTemplates/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaDirectorySettingTemplateUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/directorySettingTemplates/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomain", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "Uri": "/directory/sharedEmailDomains", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomain", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "Uri": "/directory/sharedEmailDomains/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySharedEmailDomainCount", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionByOcpSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDirectorySubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-beta", "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -78821,19 +81744,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomain", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDomain" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-beta", "Uri": "/domains", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -78860,18 +81783,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomain", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDomain" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainCount", + "ApiReferenceLink": null, "Uri": "/domains/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -78898,18 +81822,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -78928,60 +81854,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainFederationConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/federationConfiguration", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/federationConfiguration/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainFederationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainNameReference", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainNameReference", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/domainNameReferences", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79000,18 +81929,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainNameReference", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainNameReferenceCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/domainNameReferences/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79030,33 +81961,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainNameReferenceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainServiceConfigurationRecord", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79075,18 +82007,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainServiceConfigurationRecord", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainServiceConfigurationRecordCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/serviceConfigurationRecords/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79105,74 +82039,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainServiceConfigurationRecordCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitation", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitation", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainSharedEmailDomainInvitationCount", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainVerificationDnsRecord", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79191,18 +82129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainVerificationDnsRecord", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDomainVerificationDnsRecordCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/verificationDnsRecords/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -79221,19 +82161,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaDomainVerificationDnsRecordCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79284,32 +82225,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDrive", + "ApiReferenceLink": null, + "Uri": "/drives", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveActivity", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/activities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79360,266 +82302,286 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveActivity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79686,32 +82648,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemActivity", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/activities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79762,32 +82725,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemActivity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemAnalytic", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79838,73 +82804,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -79955,19 +82926,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemAnalyticLastSevenDay", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80018,33 +82990,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemAnalyticTime", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemChild", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80095,46 +83068,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemChild", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemChildCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80185,19 +83162,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemChildCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80248,19 +83226,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80311,497 +83290,532 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemContentStream", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80852,19 +83866,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemPermission", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80915,18 +83929,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemPermission", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemPermissionCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -80977,88 +83993,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemPermissionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemThumbnail", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81109,18 +84130,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemThumbnail", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemThumbnailCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81171,19 +84194,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemThumbnailCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81234,19 +84258,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemVersion", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81297,18 +84321,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemVersion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemVersionContent", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81359,19 +84385,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemVersionContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -81422,1114 +84449,1196 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveItemVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/drives/{drive-id}/list/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/list/items/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/items/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", "Uri": "/drives/{drive-id}/root/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -82580,668 +85689,714 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveRootDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", - "Command": "Get-MgBetaDriveRootListItemDocumentSetVersionField", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/special", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClass", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -83268,19 +86423,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClass", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClass", + "ApiReferenceLink": null, "Uri": "/education/classes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -83307,18 +86462,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83385,19 +86542,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83464,18 +86621,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCategory", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83542,19 +86701,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCategory", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83621,19 +86781,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCategory", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCategoryByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83700,18 +86860,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCategoryByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCategoryCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83778,21 +86942,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCategoryCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83859,21 +87024,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCategoryDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -83940,19 +87104,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84019,19 +87184,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentDefault", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84098,47 +87264,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingScheme", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingScheme", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84205,19 +87374,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84284,18 +87453,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentResourceCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84362,103 +87533,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [ - { - "Name": "EduAssignments.ReadBasic", - "Description": "View your assignments without grades", - "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadBasic.All", - "Description": "Read all class assignments without grades", - "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadWrite", - "Description": "View and modify your assignments and grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read", - "Description": "View your assignments and grades", - "FullDescription": "Allows the app to view your assignments on your behalf including grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWriteBasic.All", - "Description": "Create, read, update and delete all class assignments without grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWrite.All", - "Description": "Create, read, update and delete all class assignments with grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read.All", - "Description": "Read all class assignments with grades", - "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84517,19 +87619,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": "IMicrosoftGraphEducationAssignmentResource" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84547,14 +87650,6 @@ "PermissionType": "Application", "IsLeastPrivilege": true }, - { - "Name": "EduAssignments.ReadWriteBasic", - "Description": "View and modify your assignments without grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, { "Name": "EduAssignments.ReadWrite", "Description": "View and modify your assignments and grades", @@ -84596,19 +87691,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84675,19 +87771,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84754,74 +87851,159 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduAssignments.ReadBasic", + "Description": "View your assignments without grades", + "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadBasic.All", + "Description": "Read all class assignments without grades", + "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadWriteBasic", + "Description": "View and modify your assignments without grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite", + "Description": "View and modify your assignments and grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read", + "Description": "View your assignments and grades", + "FullDescription": "Allows the app to view your assignments on your behalf including grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWriteBasic.All", + "Description": "Create, read, update and delete all class assignments without grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite.All", + "Description": "Create, read, update and delete all class assignments with grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read.All", + "Description": "Read all class assignments with grades", + "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/defaultGradingScheme", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingDefaultGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/defaultGradingScheme", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84856,46 +88038,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSettingGradingSchemeCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -84962,19 +88147,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmission", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85041,18 +88226,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmission", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85119,33 +88306,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.Read", @@ -85180,18 +88368,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcome", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationOutcome" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.Read", @@ -85226,19 +88416,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionOutcomeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85305,19 +88496,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85384,18 +88575,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85462,103 +88655,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [ - { - "Name": "EduAssignments.ReadBasic", - "Description": "View your assignments without grades", - "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadBasic.All", - "Description": "Read all class assignments without grades", - "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadWrite", - "Description": "View and modify your assignments and grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read", - "Description": "View your assignments and grades", - "FullDescription": "Allows the app to view your assignments on your behalf including grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWriteBasic.All", - "Description": "Create, read, update and delete all class assignments without grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWrite.All", - "Description": "Create, read, update and delete all class assignments with grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read.All", - "Description": "Read all class assignments with grades", - "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85617,19 +88741,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": "IMicrosoftGraphEducationSubmissionResource" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85647,14 +88772,6 @@ "PermissionType": "Application", "IsLeastPrivilege": true }, - { - "Name": "EduAssignments.ReadWriteBasic", - "Description": "View and modify your assignments without grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, { "Name": "EduAssignments.ReadWrite", "Description": "View and modify your assignments and grades", @@ -85696,19 +88813,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85775,18 +88893,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", + "OutputType": "IMicrosoftGraphEducationSubmissionResource" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -85853,111 +88972,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [ - { - "Name": "EduAssignments.ReadBasic", - "Description": "View your assignments without grades", - "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadBasic.All", - "Description": "Read all class assignments without grades", - "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "EduAssignments.ReadWriteBasic", - "Description": "View and modify your assignments without grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWrite", - "Description": "View and modify your assignments and grades", - "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read", - "Description": "View your assignments and grades", - "FullDescription": "Allows the app to view your assignments on your behalf including grades.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWriteBasic.All", - "Description": "Create, read, update and delete all class assignments without grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.ReadWrite.All", - "Description": "Create, read, update and delete all class assignments with grades", - "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "EduAssignments.Read.All", - "Description": "Read all class assignments with grades", - "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -86024,19 +89052,193 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", "ApiVersion": "beta", - "OutputType": null, + "Variants": [ + "List" + ], + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduAssignments.ReadBasic", + "Description": "View your assignments without grades", + "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadBasic.All", + "Description": "Read all class assignments without grades", + "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadWriteBasic", + "Description": "View and modify your assignments without grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite", + "Description": "View and modify your assignments and grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read", + "Description": "View your assignments and grades", + "FullDescription": "Allows the app to view your assignments on your behalf including grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWriteBasic.All", + "Description": "Create, read, update and delete all class assignments without grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite.All", + "Description": "Create, read, update and delete all class assignments with grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read.All", + "Description": "Read all class assignments with grades", + "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" + }, + { + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null + "Command": "Get-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduAssignments.ReadBasic", + "Description": "View your assignments without grades", + "FullDescription": "Allows the app to view your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadBasic.All", + "Description": "Read all class assignments without grades", + "FullDescription": "Allows the app to read all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduAssignments.ReadWriteBasic", + "Description": "View and modify your assignments without grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf without seeing grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite", + "Description": "View and modify your assignments and grades", + "FullDescription": "Allows the app to view and modify your assignments on your behalf including  grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read", + "Description": "View your assignments and grades", + "FullDescription": "Allows the app to view your assignments on your behalf including grades.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWriteBasic.All", + "Description": "Create, read, update and delete all class assignments without grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments without grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.ReadWrite.All", + "Description": "Create, read, update and delete all class assignments with grades", + "FullDescription": "Allows the app to create, read, update and delete all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "EduAssignments.Read.All", + "Description": "Read all class assignments with grades", + "FullDescription": "Allows the app to read all class assignments with grades for all users without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassCount", + "ApiReferenceLink": null, "Uri": "/education/classes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86063,18 +89265,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-beta", "Uri": "/education/classes/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86125,18 +89328,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassGroup", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/group", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86187,46 +89392,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassMember", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86261,18 +89468,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassMemberByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86307,18 +89515,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassMemberCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86353,115 +89563,320 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModuleCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassModuleResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationClassSchool", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassSchool", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/schools", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86488,18 +89903,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassSchool", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/schools/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86526,19 +89943,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassSchoolCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassTeacher", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86565,18 +89982,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassTeacher", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassTeacherByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86603,18 +90021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassTeacherByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationClassTeacherCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86641,19 +90061,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationClassTeacherCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMe", + "ApiReferenceLink": null, "Uri": "/education/me", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -86680,32 +90100,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMe", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeAssignment", + "ApiReferenceLink": null, "Uri": "/education/me/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -86772,72 +90194,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/me/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -86904,429 +90331,460 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/assignments/delta", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", + "Uri": "/education/me/assignments/delta", + "ApiVersion": "beta", "Variants": [ "Delta" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/gradingScheme", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/gradingScheme", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/classes/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeClass", + "ApiReferenceLink": null, + "Uri": "/education/me/classes/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeClass", + "ApiReferenceLink": null, "Uri": "/education/me/classes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87353,18 +90811,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeClassCount", + "ApiReferenceLink": null, "Uri": "/education/me/classes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87391,18 +90850,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -87437,19 +90898,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeRubric", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -87484,18 +90945,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeRubric", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeRubricCount", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -87530,32 +90992,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeRubricCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeSchool", + "ApiReferenceLink": null, + "Uri": "/education/me/schools/{educationSchool-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeSchool", + "ApiReferenceLink": null, "Uri": "/education/me/schools", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87582,18 +91046,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeSchool", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/me/schools/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87620,32 +91085,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeSchoolCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/taughtClasses/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeTaughtClass", + "ApiReferenceLink": null, + "Uri": "/education/me/taughtClasses/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeTaughtClass", + "ApiReferenceLink": null, "Uri": "/education/me/taughtClasses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87672,18 +91139,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeTaughtClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeTaughtClassCount", + "ApiReferenceLink": null, "Uri": "/education/me/taughtClasses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87710,18 +91178,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeTaughtClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationMeUser", + "ApiReferenceLink": null, "Uri": "/education/me/user", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87780,70 +91249,76 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationMeUser", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/education/me/user/mailboxSettings", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/me/user/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/me/user/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/me/user/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/me/user/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationMeUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/me/user/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationRoot", + "ApiReferenceLink": null, + "Uri": "/education", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchool", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87870,19 +91345,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchool", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchool", + "ApiReferenceLink": null, "Uri": "/education/schools", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87909,18 +91384,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchool", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -87971,19 +91448,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolAdministrativeUnit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolClass", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/classes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88010,18 +91487,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolClassByRef", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88048,18 +91526,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolClassByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolClassCount", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/classes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88086,19 +91566,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolClassCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/schools/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88125,18 +91605,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-beta", "Uri": "/education/schools/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88195,18 +91676,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolUser", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -88225,18 +91707,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolUserByRef", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -88255,18 +91738,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSchoolUserCount", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -88285,19 +91770,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSchoolUserCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88332,19 +91818,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": null, "Uri": "/education/synchronizationProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88379,18 +91865,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfileCount", + "ApiReferenceLink": null, "Uri": "/education/synchronizationProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88425,32 +91912,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationSynchronizationProfileError", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfileError", + "ApiReferenceLink": null, "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88485,18 +91974,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfileError", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfileErrorCount", + "ApiReferenceLink": null, "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88531,19 +92022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfileErrorCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationSynchronizationProfileStatus", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.Read", @@ -88578,19 +92070,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationSynchronizationProfileStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUser", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -88617,21 +92112,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUser", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUser", + "ApiReferenceLink": null, "Uri": "/education/users", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -88650,32 +92143,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserAssignment", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -88742,72 +92237,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/assignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -88874,431 +92375,461 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/delta", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingScheme", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingScheme", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingScheme" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserClass", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserClass", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/classes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89325,18 +92856,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserClassCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/classes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89363,19 +92896,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserClassCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserCount", + "ApiReferenceLink": null, "Uri": "/education/users/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -89394,18 +92927,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-beta", "Uri": "/education/users/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89464,87 +92998,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/rubrics", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserRubricCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserSchool", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserSchool", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/schools", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89571,18 +93111,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserSchool", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/schools/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89609,60 +93151,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserSchoolCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEducationUserTaughtClass", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserTaughtClass", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/taughtClasses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89689,18 +93234,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserTaughtClass", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEducationUserTaughtClassCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/taughtClasses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -89727,19 +93274,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Get-MgBetaEducationUserTaughtClassCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89758,19 +93306,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89789,18 +93337,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaEntitlementManagementAccessPackageApplicablePolicyRequirement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89819,33 +93369,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageApplicablePolicyRequirement", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89864,46 +93415,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentAdditional", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/additionalAccess", + "ApiVersion": "beta", "Variants": [ "Access", "Access1", "AccessViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStepCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89922,19 +93477,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStepCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89953,18 +93508,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -89983,19 +93540,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90014,18 +93571,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90044,103 +93602,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionHandler", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionHandler", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", - "Permissions": [ - { - "Name": "EntitlementManagement.Read.All", - "Description": "Read all entitlement management resources", - "FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "EntitlementManagement.ReadWrite.All", - "Description": "Read and write all entitlement management resources", - "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90159,18 +93692,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/$count", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90189,18 +93723,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentRequestCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90219,19 +93754,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/{accessPackageAssignmentResourceRole-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90250,18 +93786,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/$count", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90280,18 +93817,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentResourceRole" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageAssignmentResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentResourceRoles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90310,19 +93848,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90341,18 +93880,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageCatalog" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90371,19 +93911,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackageCatalog" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90402,18 +93943,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphCustomCalloutExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90432,18 +93974,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphCustomCalloutExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90462,31 +94005,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceRole", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes", - "Permissions": [], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceRoles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/$count", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90505,18 +94036,33 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageResourceScopes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90535,19 +94081,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90566,18 +94113,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/$count", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90596,18 +94144,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90626,18 +94175,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90656,18 +94206,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphAccessPackage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90686,18 +94237,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90716,32 +94268,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", + "OutputType": "IMicrosoftGraphGroup" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "EntitlementManagement.Read.All", + "Description": "Read all entitlement management resources", + "FullDescription": "Allows the app to read access packages and related entitlement management resources without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EntitlementManagement.ReadWrite.All", + "Description": "Read and write all entitlement management resources", + "FullDescription": "Allows the app to read and write access packages and related entitlement management resources without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90760,58 +94345,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageIncompatibleWith", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/{accessPackageResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResources", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResources/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90830,19 +94420,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90861,32 +94451,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentAccessPackageResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/{accessPackageResourceEnvironment-id}/accessPackageResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceEnvironments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90905,32 +94497,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceEnvironmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90949,18 +94543,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -90979,18 +94574,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAccessPackageResourceRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91009,19 +94606,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91040,32 +94637,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAssignmentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequestAccessPackageAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/accessPackageAssignment", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementAssignmentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91084,32 +94683,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementAssignmentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementAssignmentRequestRequestorConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/requestor/connectedOrganization", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91128,19 +94730,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91159,18 +94761,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganization", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91189,18 +94792,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsor", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91219,18 +94823,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91249,18 +94854,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91279,19 +94886,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsor", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91310,18 +94917,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91340,18 +94948,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91370,19 +94980,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaEntitlementManagementSetting", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -91401,153 +95011,165 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaEntitlementManagementSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectByObjectId", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}/connectedOrganization", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}/connectedOrganization", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaEntitlementManagementSubjectCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternal", + "ApiReferenceLink": null, + "Uri": "/external", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternal" }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/external/authorizationSystems", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/external/authorizationSystems/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystemCount", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalAuthorizationSystemDataCollectionInfo", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataCollectionInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataCollectionInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -91574,19 +95196,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -91613,18 +95235,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnectionCount", + "ApiReferenceLink": null, "Uri": "/external/connections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -91651,18 +95274,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnectionGroup", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.Read.All", @@ -91689,87 +95314,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionGroupMemberCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnectionItem", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -91796,101 +95427,108 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnectionItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivityCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemActivityPerformedBy", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionItemCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnectionOperation", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -91917,60 +95555,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnectionOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/connections/{externalConnection-id}/operations", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/connections/{externalConnection-id}/operations/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionOperationCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/quota", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalConnectionQuota", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/quota", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalConnectionSchema", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/schema", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -91997,32 +95639,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalConnectionSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "Uri": "/external/industryData", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryData", + "ApiReferenceLink": null, + "Uri": "/external/industryData", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": null, "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-DataConnector.Read.All", @@ -92041,19 +95685,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": null, "Uri": "/external/industryData/dataConnectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-DataConnector.Read.All", @@ -92072,18 +95716,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataConnectorCount", + "ApiReferenceLink": null, "Uri": "/external/industryData/dataConnectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-DataConnector.Read.All", @@ -92102,32 +95747,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}/sourceSystem", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataConnectorSourceSystem", + "ApiReferenceLink": null, + "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}/sourceSystem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataInboundFlow", + "ApiReferenceLink": null, "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-InboundFlow.Read.All", @@ -92146,19 +95794,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataInboundFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataInboundFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataInboundFlow", + "ApiReferenceLink": null, "Uri": "/external/industryData/inboundFlows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-InboundFlow.Read.All", @@ -92177,18 +95825,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataInboundFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataInboundFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataInboundFlowCount", + "ApiReferenceLink": null, "Uri": "/external/industryData/inboundFlows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-InboundFlow.Read.All", @@ -92207,18 +95856,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataInboundFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataInboundFlowDataConnector", + "ApiReferenceLink": null, "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/dataConnector", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-DataConnector.Read.All", @@ -92237,19 +95888,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataInboundFlowDataConnector", + "OutputType": "IMicrosoftGraphIndustryDataConnector" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataInboundFlowYear", + "ApiReferenceLink": null, + "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/year", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataConnector", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}/year", + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-TimePeriod.Read.All", @@ -92268,318 +95920,341 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataInboundFlowYear", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "Uri": "/external/industryData/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOperation", + "ApiReferenceLink": null, + "Uri": "/external/industryData/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataOperation", + "ApiReferenceLink": null, "Uri": "/external/industryData/operations", - "Permissions": [], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataOperation", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/external/industryData/operations/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOperationCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlowCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "Uri": "/external/industryData/referenceDefinitions", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinition", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "Uri": "/external/industryData/referenceDefinitions/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataReferenceDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/roleGroups/{roleGroup-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroup", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups/{roleGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRoleGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "Uri": "/external/industryData/roleGroups", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroup", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRoleGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "Uri": "/external/industryData/roleGroups/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRoleGroupCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/runs/{industryDataRun-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRun", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs/{industryDataRun-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRun" }, { - "Uri": "/external/industryData/runs", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRun", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRun" }, { - "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/{industryDataRunActivity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivity", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/{industryDataRunActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRunActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRunActivity" }, { - "Uri": "/external/industryData/runs/{industryDataRun-id}/activities", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivity", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs/{industryDataRun-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRunActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRunActivity" }, { - "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunActivityCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs/{industryDataRun-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/runs/$count", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunCount", + "ApiReferenceLink": null, + "Uri": "/external/industryData/runs/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/runs/{industryDataRun-id}/getStatistics", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaExternalIndustryDataRunStatistics", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydatarun-getstatistics?view=graph-rest-beta", + "Uri": "/external/industryData/runs/{industryDataRun-id}/getStatistics", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRunStatistics", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydatarun-getstatistics?view=graph-rest-beta" + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRunStatistics" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataSourceSystem", + "ApiReferenceLink": null, "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-SourceSystem.Read.All", @@ -92598,19 +96273,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataSourceSystem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataSourceSystem", + "ApiReferenceLink": null, "Uri": "/external/industryData/sourceSystems", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-SourceSystem.Read.All", @@ -92629,18 +96304,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataSourceSystem", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataSourceSystemCount", + "ApiReferenceLink": null, "Uri": "/external/industryData/sourceSystems/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-SourceSystem.Read.All", @@ -92659,18 +96335,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataSourceSystemCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataYear", + "ApiReferenceLink": null, "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-TimePeriod.Read.All", @@ -92689,19 +96367,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataYear", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataYear", + "ApiReferenceLink": null, "Uri": "/external/industryData/years", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-TimePeriod.Read.All", @@ -92720,18 +96398,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataYear", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaExternalIndustryDataYearCount", + "ApiReferenceLink": null, "Uri": "/external/industryData/years/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-TimePeriod.Read.All", @@ -92750,3649 +96429,3908 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaExternalIndustryDataYearCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/financials", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancial", + "ApiReferenceLink": null, + "Uri": "/financials", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinancials", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinancials" }, { - "Uri": "/financials/companies/{company-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompany", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompany" }, { - "Uri": "/financials/companies", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompany", + "ApiReferenceLink": null, + "Uri": "/financials/companies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompany", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompany" }, { - "Uri": "/financials/companies/{company-id}/accounts/{account-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/accounts/{account-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/accounts", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/accounts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/accounts/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAccountCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/accounts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsPayable/{agedAccountsPayable-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsPayable", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgedAccountsPayable" }, { - "Uri": "/financials/companies/{company-id}/agedAccountsPayable", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayable", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsPayable", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsPayable", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgedAccountsPayable" }, { - "Uri": "/financials/companies/{company-id}/agedAccountsPayable/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountPayableCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsPayable/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/{agedAccountsReceivable-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsReceivable", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgedAccountsReceivable" }, { - "Uri": "/financials/companies/{company-id}/agedAccountsReceivable", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivable", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsReceivable", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgedAccountsReceivable", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgedAccountsReceivable" }, { - "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyAgedAccountReceivableCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/agedAccountsReceivable/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegion", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCountryRegion" }, { - "Uri": "/financials/companies/{company-id}/countriesRegions", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegion", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCountryRegion" }, { - "Uri": "/financials/companies/{company-id}/countriesRegions/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCountryRegionCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/currencies", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/currencies/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCurrencyCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customers", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customers/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPayments", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimension", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphDimension" }, { - "Uri": "/financials/companies/{company-id}/dimensions", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimension", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphDimension" }, { - "Uri": "/financials/companies/{company-id}/dimensions/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/dimensionValues/{dimensionValue-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValue", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensionValues/{dimensionValue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimensionValue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphDimensionValue" }, { - "Uri": "/financials/companies/{company-id}/dimensionValues", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValue", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensionValues", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDimensionValue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphDimensionValue" }, { - "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyDimensionValueCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/dimensions/{dimension-id}/dimensionValues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployee", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmployee" }, { - "Uri": "/financials/companies/{company-id}/employees", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployee", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmployee" }, { - "Uri": "/financials/companies/{company-id}/employees/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeeCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyEmployeePictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGeneralLedgerEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphGeneralLedgerEntry" }, { - "Uri": "/financials/companies/{company-id}/generalLedgerEntries", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntry", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/generalLedgerEntries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGeneralLedgerEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphGeneralLedgerEntry" }, { - "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/generalLedgerEntries/{generalLedgerEntry-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/generalLedgerEntries/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyGeneralLedgerEntryCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/generalLedgerEntries/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformation", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "Uri": "/financials/companies/{company-id}/companyInformation", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformation", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "Uri": "/financials/companies/{company-id}/companyInformation/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformationCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyInformationPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/items", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/itemCategories", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/itemCategories/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCategoryCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/journals/{journal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournal" }, { - "Uri": "/financials/companies/{company-id}/journals", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournal" }, { - "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/{journal-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/journals/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournalLine" }, { - "Uri": "/financials/companies/{company-id}/journalLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournalLine" }, { - "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/journalLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyJournalLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/paymentMethods", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/paymentMethods/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentMethodCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/paymentTerms", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/paymentTerms/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPaymentTermCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemo", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemo", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine", + "ApiReferenceLink": null, "Uri": "/financials/companies/{company-id}/salesInvoiceLines", - "Permissions": [], - "Module": "Beta.Financials", - "Command": "Get-MgBetaFinancialCompanySaleInvoiceLine", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoicePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleInvoiceShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrder", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrder" }, { - "Uri": "/financials/companies/{company-id}/salesOrders", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrder", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrder" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleOrderPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuote", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuote" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuote", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuote" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineAccount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/account", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccount", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccount" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteLineItemPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuotePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanySaleQuoteShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyShipmentMethodCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxArea", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxArea" }, { - "Uri": "/financials/companies/{company-id}/taxAreas", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxArea", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxArea" }, { - "Uri": "/financials/companies/{company-id}/taxAreas/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxAreaCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroup", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxGroup" }, { - "Uri": "/financials/companies/{company-id}/taxGroups", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroup", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxGroup" }, { - "Uri": "/financials/companies/{company-id}/taxGroups/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyTaxGroupCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasure", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyUnitOfMeasureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/vendors", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/vendors/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/$count", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaFinancialCompanyVendorPictureCount", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta", "Uri": "/groups/{group-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -96435,19 +100373,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-beta", "Uri": "/groups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -96490,18 +100428,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupAcceptedSender", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -96520,18 +100459,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupAcceptedSender", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupAcceptedSenderByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -96550,18 +100490,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupAcceptedSenderByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupAcceptedSenderCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -96580,33 +100522,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupAcceptedSenderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -96633,18 +100576,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaGroupAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/appRoleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -96671,33 +100616,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaGroupAppRoleAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/getByIds", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/groups/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta", "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -96740,33 +100687,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupByUniqueName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -96801,19 +100750,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupCalendarEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -96832,18 +100781,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupCalendarEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupCalendarEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", "Uri": "/groups/{group-id}/calendar/events/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Calendars.Read", @@ -96870,89 +100821,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupCalendarEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupCalendarPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/getSchedule", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/getSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduleInformation" }, { - "Uri": "/groups/{group-id}/calendar/calendarView", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupCalendarView", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarView", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -96987,19 +100944,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversation" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97034,18 +100991,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97080,19 +101039,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97127,19 +101087,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThread", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97174,18 +101134,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThread", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97220,19 +101182,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97267,21 +101232,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadPost", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97316,32 +101279,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadPost", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97376,18 +101341,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadPostAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadPostAttachmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97422,19 +101389,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadPostAttachmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupConversationThreadPostCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -97469,224 +101437,239 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupConversationThreadPostCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostInReplyToMentionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupConversationThreadPostMentionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupCount", + "ApiReferenceLink": null, "Uri": "/groups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -97729,32 +101712,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/createdOnBehalfOf", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupCreatedOnBehalfOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/createdOnBehalfOf", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupDefaultDrive", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drive", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -97805,19 +101791,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaGroupDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-beta", "Uri": "/groups/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -97860,32 +101846,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupDrive", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drives", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -97936,155 +101924,167 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaGroupDrive", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupDriveCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drives/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -98135,2804 +102135,3006 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaGroupDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEndpoint", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -100951,19 +105153,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupEndpoint", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEndpoint", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/endpoints", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -100982,18 +105184,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupEndpoint", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEndpointCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/endpoints/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -101012,19 +105216,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupEndpointCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/events/{event-id}", + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -101059,19 +105264,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -101090,73 +105295,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEventCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -101175,19 +105386,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupEventCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", "Uri": "/groups/{group-id}/events/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Calendars.Read", @@ -101214,348 +105426,372 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstance", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExceptionOccurrenceInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventInstance", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupEventInstance", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -101574,73 +105810,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupEventInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupEventInstanceCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}/instances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -101659,238 +105901,257 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaGroupEventInstanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExceptionOccurrenceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupEventInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-beta", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -101909,21 +106170,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupLifecyclePolicy", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-beta", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -101942,18 +106201,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupLifecyclePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupLifecyclePolicyByGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/groupLifecyclePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -101972,18 +106232,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupLifecyclePolicyByGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupLifecyclePolicyCount", + "ApiReferenceLink": null, "Uri": "/groupLifecyclePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -102002,18 +106263,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupLifecyclePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupMember", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -102056,180 +106318,193 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/members/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/members/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/members/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/members/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/members/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/members/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupMemberByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -102272,18 +106547,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupMemberCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -102326,103 +106603,112 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/application/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/device/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/orgContact/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/user/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaGroupMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/groups/{group-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -102505,21 +106791,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaGroupMemberObject", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/getMemberObjects", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -102618,35 +106905,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupMemberOf", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/memberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -102681,72 +106967,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/memberOf/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupMemberOfCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/memberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -102781,334 +107073,358 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupMemberWithLicenseErrorCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103151,19 +107467,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103206,18 +107522,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteNotebookCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103260,19 +107578,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteNotebookCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaGroupOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -103315,21 +107636,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteNotebookSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103372,18 +107691,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteNotebookSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103426,18 +107746,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteNotebookSectionGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteOperation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103480,33 +107802,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -103541,19 +107865,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenotePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -103588,32 +107912,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenotePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenotePageCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -103648,19 +107975,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenotePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", + "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Notes.Create", @@ -103703,33 +108031,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupOnenoteRecentNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -103764,33 +108094,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103833,19 +108165,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103888,18 +108220,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103942,19 +108276,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -103997,19 +108332,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -104052,19 +108388,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -104107,21 +108446,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -104164,18 +108501,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -104210,18 +108548,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaGroupOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOwner", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -104264,180 +108603,193 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupOwner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/owners/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/owners/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/owners/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/owners/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/owners/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOwnerByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -104480,18 +108832,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupOwnerCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -104534,103 +108888,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/application/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/device/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/orgContact/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/user/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaGroupPasswordSingleSignOnCredential", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/getPasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -104657,33 +109018,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPasswordSingleSignOnCredential", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPermissionGrant", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -104718,18 +109080,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/permissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -104764,19 +109128,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -104803,21 +109170,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPhoto", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photos", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -104844,18 +109209,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPhoto", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPhotoContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -104882,49 +109251,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPhotoContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlanner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPlannerPlan", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/planner/plans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -104975,59 +109344,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaGroupPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucket", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucketDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanBucketTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPlannerPlanCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/planner/plans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -105078,19 +109452,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaGroupPlannerPlanCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupPlannerPlanDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", "Uri": "/groups/{group-id}/planner/plans/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Tasks.Read", @@ -105109,60 +109484,63 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupPlannerPlanDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanTask", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupPlannerPlanTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupRejectedSender", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -105181,18 +109559,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupRejectedSender", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupRejectedSenderByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -105211,18 +109590,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupRejectedSenderByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupRejectedSenderCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -105241,19 +109622,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupRejectedSenderCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -105288,19 +109670,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectorySetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -105335,18 +109717,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupSetting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectorySetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupSettingCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -105381,7971 +109765,8542 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupSettingCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/$count", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drive", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteDefaultDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteDriveCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteExternalColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBin", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBin" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteGetGraphBPrePathLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlocker", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlocker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlocker" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionBitlockerRecoveryKeyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/bitlocker/recoveryKeys/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionPolicyLabelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResultCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItemCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists", + "ApiVersion": "beta", "Variants": [ "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemActivityListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteNotebookSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenotePageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionGroupSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOnenoteSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageAsSitePageWebPartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCountAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSitePermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBin", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBin" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBinItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBinItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteRecycleBinLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetParentGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSiteTermStoreSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSubSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSubSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites", + "ApiVersion": "beta", "Variants": [ "List2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupSubSiteCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels", + "ApiVersion": "beta", "Variants": [ "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/group", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/incomingChannels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/incomingChannels/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamIncomingChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/installedApps", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/installedApps/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/operations/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/owners/{user-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/team/owners", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/team/owners/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamOwnerServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/permissionGrants/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPermissionGrantCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/photo", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/groups/{group-id}/team/photo/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamPrimaryChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleDayNoteCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOfferShiftRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleOpenShiftCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSchedulingGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleShiftRoleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleSwapShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeCardCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffReasonCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamScheduleTimeOffRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTagCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTagMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/template", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/template", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/templateDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/templateDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113380,19 +118335,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThread", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113427,18 +118382,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThread", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113473,19 +118430,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113520,21 +118480,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadPost", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113569,32 +118527,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadPost", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadPostAttachment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113629,18 +118589,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadPostAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadPostAttachmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113675,19 +118637,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadPostAttachmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupThreadPostCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -113722,238 +118685,254 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupThreadPostCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostInReplyToMentionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupThreadPostMentionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupTransitiveMember", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMembers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -113996,180 +118975,194 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupTransitiveMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/transitiveMembers/application", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/transitiveMembers/device", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMembers/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/transitiveMembers/orgContact", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/transitiveMembers/user", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupTransitiveMemberCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMembers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -114212,117 +119205,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupTransitiveMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/application/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/device/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/user/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -114357,72 +119357,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaGroupTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -114457,101 +119463,108 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Get-MgBetaGroupTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaGroupTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaGroupUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/groups/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/apiConnectors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/apiConnectors/$count", - "Permissions": [], "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityApiConnectorCount", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlow", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114570,19 +119583,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventsFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlow", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114601,32 +119614,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventsFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114645,195 +119660,209 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalUsersSelfServiceSignUpEventsFlow" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowCondition", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationConditionApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationConditionApplication" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplicationCount", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnAttributeCollectionHandler", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnAttributeCollectionHandler" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowOnAuthenticationMethodLoadStart", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnAuthenticationMethodLoadStartHandler", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnAuthenticationMethodLoadStartHandler" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAttributeCollectionExternalUserSelfServiceSignUpAttributeCount", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderCount", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowCondition", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationConditionsApplications" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlowCount", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114852,18 +119881,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/externalUsersSelfServiceSignUpEventsFlow/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114882,32 +119912,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlowCountAsExternalUserSelfServiceSignUpEventFlow", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114926,18 +119958,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplication", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationConditionApplication", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationConditionApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplicationCount", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -114956,47 +119990,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventFlowIncludeApplicationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAttributeCollectionAsOnAttributeCollectionExternalUserSelfServiceSignUp", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityAuthenticationEventFlowOnAuthenticationMethodLoadStartAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUp", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventListener", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -115015,19 +120052,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventListener", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventListener", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -115046,18 +120083,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventListener", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityAuthenticationEventListenerCount", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -115076,18 +120114,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityAuthenticationEventListenerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2CUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115106,19 +120146,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2CUserFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2CUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2cUserFlows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115137,18 +120177,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2CUserFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2CUserFlowCount", + "ApiReferenceLink": null, "Uri": "/identity/b2cUserFlows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115167,106 +120208,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2CUserFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowIdentityProviderCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [ - { - "Name": "IdentityUserFlow.Read.All", - "Description": "Read all identity user flows", - "FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "IdentityUserFlow.ReadWrite.All", - "Description": "Read and write all identity user flows", - "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115285,18 +120301,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115315,19 +120332,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115346,19 +120364,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115377,18 +120396,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115407,19 +120427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115438,19 +120459,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageDefaultPageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115469,19 +120491,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115500,18 +120523,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115530,19 +120554,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115561,19 +120586,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowLanguageOverridePageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115592,19 +120618,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115623,18 +120650,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115653,19 +120681,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115684,33 +120713,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta", + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [ + { + "Name": "IdentityUserFlow.Read.All", + "Description": "Read all identity user flows", + "FullDescription": "Allows the app to read your organization's user flows, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "IdentityUserFlow.ReadWrite.All", + "Description": "Read and write all identity user flows", + "FullDescription": "Allows the app to read or write your organization's user flows, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2CUserFlowUserAttributeAssignmentUserAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115729,19 +120792,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115760,32 +120823,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowApiConnectorConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115804,75 +120869,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProvider", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowIdentityProviderCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115891,19 +120962,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115922,18 +120993,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115952,19 +121025,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -115983,19 +121057,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116014,18 +121088,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116044,19 +121120,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116075,19 +121152,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageDefaultPageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116106,19 +121184,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116137,18 +121215,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116167,19 +121247,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116198,89 +121279,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowLanguageOverridePageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowPreTokenIssuance", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116299,19 +121386,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116330,18 +121417,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116360,19 +121449,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -116391,47 +121481,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityB2XUserFlowUserAttributeAssignmentUserAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ConditionalAccess", @@ -116450,18 +121542,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReferenceCount", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ConditionalAccess", @@ -116480,285 +121573,307 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationContextClassReferenceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrength", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths", + "ApiVersion": "beta", "Variants": [ "Get1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes", + "ApiVersion": "beta", "Variants": [ "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodModeCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/$count", + "ApiVersion": "beta", "Variants": [ "Get1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies", + "ApiVersion": "beta", "Variants": [ "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "beta", "Variants": [ "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/$count", + "ApiVersion": "beta", "Variants": [ "Get1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphNamedLocation" }, { - "Uri": "/identity/conditionalAccess/namedLocations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphNamedLocation" }, { - "Uri": "/identity/conditionalAccess/namedLocations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessNamedLocationCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/conditionalAccess/policies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/conditionalAccess/policies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessPolicyCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplate", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "Uri": "/identity/conditionalAccess/templates", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplate", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "Uri": "/identity/conditionalAccess/templates/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityConditionalAccessTemplateCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/continuousAccessEvaluationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityContinuouAccessEvaluationPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/continuousAccessEvaluationPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -116777,19 +121892,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -116808,18 +121923,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityCustomAuthenticationExtension", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityCustomAuthenticationExtensionCount", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -116838,373 +121954,401 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityCustomAuthenticationExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInsightCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewerCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsightCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsightCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117223,19 +122367,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117254,18 +122398,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117284,18 +122429,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117314,19 +122461,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117345,32 +122492,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117389,18 +122538,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117419,19 +122570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117450,19 +122602,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117481,19 +122634,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117512,18 +122665,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117542,88 +122697,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117642,19 +122803,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117673,18 +122834,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117703,19 +122866,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117734,19 +122898,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117765,18 +122929,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -117795,141 +122961,150 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAccessReviewPolicy", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/policy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "Policy.Read.All", @@ -117948,18 +123123,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAccessReviewPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -117978,19 +123155,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -118009,18 +123186,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -118039,18 +123217,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -118069,19 +123249,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -118100,73 +123280,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -118185,19 +123371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118216,19 +123403,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118247,18 +123434,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118277,73 +123465,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118362,19 +123556,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118393,18 +123587,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118423,141 +123618,152 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedItemContainer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedItemContainer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118576,19 +123782,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118607,18 +123813,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118637,222 +123844,238 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118871,18 +124094,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScope", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScopeCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118901,74 +124126,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowExecutionScopeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -118987,19 +124217,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119018,18 +124248,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRun", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119048,33 +124280,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119093,18 +124326,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119123,88 +124358,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119223,19 +124464,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119254,18 +124495,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119284,88 +124527,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119384,18 +124632,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowSetting", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/settings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119414,32 +124663,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119458,18 +124709,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119488,19 +124741,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119519,19 +124773,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119550,18 +124804,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119580,32 +124835,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119624,18 +124881,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119654,102 +124913,108 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119768,18 +125033,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReport", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119798,61 +125065,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119871,18 +125141,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -119901,88 +125173,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120001,19 +125279,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120032,18 +125310,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120062,183 +125341,196 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120257,18 +125549,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120287,88 +125581,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120387,18 +125686,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120417,19 +125718,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120448,18 +125749,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120478,129 +125781,138 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120619,19 +125931,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120650,18 +125962,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -120680,717 +125994,770 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/permissionsAnalytics", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalytic", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAw", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwFindingCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistributionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzure", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzureFindingCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistributionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcp", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpFindingCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}/authorizationSystem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistributionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsManagement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsManagement" }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsRequestChange", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsRequestChange", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementPermissionRequestChangeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduledPermissionsRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + ], + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121409,19 +126776,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121440,32 +126807,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121484,59 +126853,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121555,19 +126929,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121586,32 +126960,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121630,87 +127006,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121729,19 +127112,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121760,32 +127143,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -121804,87 +127189,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -121903,19 +127295,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -121934,18 +127326,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -121964,59 +127357,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122035,19 +127433,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122066,18 +127464,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122096,87 +127495,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122195,19 +127601,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122226,18 +127632,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -122256,555 +127663,817 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}/alertDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}/alertDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertIncident", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertIncident" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertIncidentCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagementAlert.Read.Directory", + "Description": "Read all alert data for your company's directory", + "FullDescription": "Allows the app to read all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementAlert.ReadWrite.Directory", + "Description": "Read all alert data, configure alerts, and take actions on all alerts for your company's directory", + "FullDescription": "Allows the app to read and manage all role-based access control (RBAC) alerts for your company's directory, without a signed-in user. This includes managing alert settings, initiating alert scans, dimissing alerts, remediating alert incidents, and reading alert statuses, alert definitions, alert configurations and incidents that lead to an alert.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperation", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceRoleManagementAlertOperationCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreements", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityProvider", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -122823,19 +128492,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityProvider", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityProvider", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -122854,18 +128523,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityProvider", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityProviderCount", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -122884,18 +128554,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityProviderCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -122914,19 +128586,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/userFlows", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -122945,18 +128617,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlow", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlowAttribute", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -122975,19 +128649,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlowAttribute", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlowAttribute", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -123006,18 +128680,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlowAttribute", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlowAttributeCount", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -123036,18 +128711,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlowAttributeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaIdentityUserFlowCount", + "ApiReferenceLink": null, "Uri": "/identity/userFlows/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -123066,44 +128742,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaIdentityUserFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtection", + "ApiReferenceLink": null, + "Uri": "/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/informationProtection/bitlocker", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionBitlocker", + "ApiReferenceLink": null, + "Uri": "/informationProtection/bitlocker", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlocker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlocker" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -123122,19 +128802,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -123153,18 +128833,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKey", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKeyCount", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -123183,71 +128864,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionBitlockerRecoveryKeyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/informationProtection/dataLossPreventionPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionDataLossPreventionPolicyCount", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionPolicyLabel", + "ApiReferenceLink": null, "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -123266,19 +128953,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionPolicyLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionPolicyLabel", + "ApiReferenceLink": null, "Uri": "/informationProtection/policy/labels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -123297,18 +128984,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionPolicyLabel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionPolicyLabelCount", + "ApiReferenceLink": null, "Uri": "/informationProtection/policy/labels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -123327,58 +129015,63 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionPolicyLabelCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection/sensitivityLabels/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityLabelCount", + "ApiReferenceLink": null, + "Uri": "/informationProtection/sensitivityLabels/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityLabelSublabelCount", + "ApiReferenceLink": null, + "Uri": "/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -123397,19 +129090,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -123428,18 +129121,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestCount", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -123458,181 +129152,195 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInformationProtectionThreatAssessmentRequestResultCount", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationCount", + "ApiReferenceLink": null, + "Uri": "/invitations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsor", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsor", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaInvitationInvitedUserSponsorCount", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-beta", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -123659,19 +129367,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOauth2PermissionGrant", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-beta", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -123698,18 +129406,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/oauth2PermissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -123736,18 +129445,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOauth2PermissionGrantCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOauth2PermissionGrantDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-beta", "Uri": "/oauth2PermissionGrants/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -123774,173 +129484,178 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOauth2PermissionGrantDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfile", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "Uri": "/onPremisesPublishingProfiles", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfile", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "List", "List1", "List2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupAgentCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", @@ -123949,433 +129664,459 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnector", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnector" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnector", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnector" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplication", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(appId='{appId}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByAppId", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationByUniqueName", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMember", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnector" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorGroupMemberCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOf", - "Variants": [ - "List" - ], + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileConnectorMemberOfCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfileCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOnPremisePublishingProfilePublishedResourceCount", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-beta", "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -124410,19 +130151,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-beta", "Uri": "/organization", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -124497,18 +130238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganization", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBranding", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -124551,89 +130294,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBranding", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBranding", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "Uri": "/organization/{organization-id}/branding/backgroundImage", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingBackgroundImage", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/backgroundImage", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/bannerLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/bannerLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/customCSS", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/customCSS", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/favicon", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/favicon", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/headerLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/headerLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -124676,19 +130425,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -124731,18 +130480,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalization", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationBackgroundImage", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124761,19 +130512,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124792,19 +130544,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/$count", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -124847,19 +130600,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124878,19 +130632,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124909,19 +130664,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124940,19 +130696,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -124971,19 +130728,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -125002,61 +130760,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationBrandingLocalizationSquareLogoDark", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogoDark", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationBrandingSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogoDark", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/getByIds", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaOrganizationById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/organization/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -125075,19 +130837,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -125106,18 +130868,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfigurationCount", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -125136,19 +130900,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaOrganizationCertificateBasedAuthConfigurationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationCount", + "ApiReferenceLink": null, "Uri": "/organization/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -125223,105 +130987,113 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/organization/{organization-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationExtensionCount", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/getMemberGroups", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaOrganizationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", + "Uri": "/organization/{organization-id}/getMemberGroups", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/getMemberObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaOrganizationMemberObject", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/partnerInformation", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaOrganizationPartnerInformation", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/partnerInformation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnerInformation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnerInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationSetting", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -125340,19 +131112,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationSetting", + "OutputType": "IMicrosoftGraphOrganizationSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationSettingContactInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/contactInsights", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/contactInsights", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -125371,19 +131144,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationSettingContactInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/itemInsights", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read.All", @@ -125402,19 +131176,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationSettingItemInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -125433,19 +131208,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", + "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaOrganizationSettingPersonInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/peopleInsights", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read.All", @@ -125464,221 +131240,237 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaOrganizationSettingPersonInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "Uri": "/organization/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaOrganizationUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/organization/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/places/{place-id}/room", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/room", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/room", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/room", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoomList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoomList" }, { - "Uri": "/places/roomList", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/roomList", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoomList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoomList" }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/rooms", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/rooms/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListRoomCount", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkspace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkspace" }, { - "Uri": "/places/{place-id}/roomList/workspaces", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkspace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkspace" }, { - "Uri": "/places/{place-id}/roomList/workspaces/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceAsRoomListWorkspaceCount", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceCount", + "ApiReferenceLink": null, + "Uri": "/places/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/room/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceCountAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/room/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/roomList/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlaceCountAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/roomList/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlanner", + "ApiReferenceLink": null, + "Uri": "/planner", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlanner", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlanner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -125729,19 +131521,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerBucket", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -125792,18 +131584,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerBucket", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerBucketCount", + "ApiReferenceLink": null, "Uri": "/planner/buckets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -125854,18 +131647,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerBucketCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerBucketDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", "Uri": "/planner/buckets/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -125916,18 +131710,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerBucketDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerBucketTask", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -125978,18 +131773,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerBucketTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126040,19 +131837,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlan", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126103,18 +131900,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlanBucket", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126165,18 +131963,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlanBucket", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlanCount", + "ApiReferenceLink": null, "Uri": "/planner/plans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126227,18 +132026,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlanCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlanDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", "Uri": "/planner/plans/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126289,18 +132089,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlanDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlanDetail", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126351,19 +132153,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlanDetail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerPlanTask", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126414,18 +132216,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerPlanTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRoster", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126460,45 +132264,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRoster", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "Uri": "/planner/rosters", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlannerRoster", + "ApiReferenceLink": null, + "Uri": "/planner/rosters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "Uri": "/planner/rosters/$count", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlannerRosterCount", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRosterMember", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126533,19 +132340,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRosterMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRosterMember", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126580,18 +132387,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRosterMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRosterMemberCount", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126626,33 +132435,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRosterMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/planner/rosters/{plannerRoster-id}/plans/{plannerPlan-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPlannerRosterPlan", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/{plannerRoster-id}/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRosterPlan", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/plans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126687,18 +132497,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRosterPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerRosterPlanCount", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/plans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126733,19 +132545,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerRosterPlanCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126796,19 +132609,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTask", + "ApiReferenceLink": null, "Uri": "/planner/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126859,18 +132672,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126921,19 +132736,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -126984,19 +132800,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskBucketTaskBoardFormat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskCount", + "ApiReferenceLink": null, "Uri": "/planner/tasks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -127047,18 +132863,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", "Uri": "/planner/tasks/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -127077,18 +132894,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskDetail", + "ApiReferenceLink": null, "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -127139,19 +132958,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -127202,19 +133022,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaPlannerTaskProgressTaskBoardFormat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAccessReviewPolicy", + "ApiReferenceLink": null, "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127233,18 +133053,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAccessReviewPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127271,19 +133093,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127310,59 +133132,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyApplyToCount", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127389,18 +133215,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyActivityBasedTimeoutPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127435,18 +133262,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAdminConsentRequestPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127473,19 +133302,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAppManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127512,32 +133341,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAppManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Application.Read.All", @@ -127572,18 +133403,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAppManagementPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAppManagementPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Application.Read.All", @@ -127618,19 +133451,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAppManagementPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAppManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127657,18 +133490,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAppManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127687,71 +133521,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthenticationFlowPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", - "Permissions": [], "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127778,19 +133618,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127817,59 +133657,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127896,32 +133740,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthenticationStrengthPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthorizationPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authorizationPolicy", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127940,18 +133786,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthorizationPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyAuthorizationPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/authorizationPolicy/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -127970,72 +133817,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyAuthorizationPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverrideCount", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/b2cAuthenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyB2CAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128062,19 +133915,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyClaimMappingPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128101,32 +133954,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyClaimMappingPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128169,18 +134024,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128223,19 +134080,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyClaimMappingPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyClaimMappingPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128262,31 +134119,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyClaimMappingPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/conditionalAccessPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyConditionalAccessPolicyCount", + "ApiReferenceLink": null, + "Uri": "/policies/conditionalAccessPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128305,18 +134164,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128335,18 +134195,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyDefault", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128365,19 +134227,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128396,18 +134258,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerCount", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128426,18 +134289,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128456,19 +134321,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.Read.All", @@ -128487,44 +134352,47 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplate", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128551,18 +134419,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyDefaultAppManagementPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaPolicyDeviceRegistrationPolicy", + "ApiReferenceLink": null, "Uri": "/policies/deviceRegistrationPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.DeviceConfiguration", @@ -128589,31 +134458,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyDeviceRegistrationPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy" }, { - "Uri": "/policies/directoryRoleAccessReviewPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyDirectoryRoleAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyExternalIdentityPolicy", + "ApiReferenceLink": null, "Uri": "/policies/externalIdentitiesPolicy", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128632,111 +134503,120 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyExternalIdentityPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyApplyToCount", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFeatureRolloutPolicyCount", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/federatedTokenValidationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyFederatedTokenValidationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/federatedTokenValidationPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128763,19 +134643,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128802,32 +134682,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128870,18 +134752,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128924,19 +134808,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -128963,31 +134847,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyHomeRealmDiscoveryPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129006,19 +134893,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129037,18 +134924,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129067,18 +134955,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroup", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129097,18 +134986,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129127,18 +135017,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupCount", + "ApiReferenceLink": null, "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129157,46 +135049,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyMobileAppManagementPolicyIncludedGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129215,19 +135110,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129246,18 +135141,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129276,18 +135172,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroup", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129306,18 +135203,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129336,18 +135234,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupCount", + "ApiReferenceLink": null, "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -129366,46 +135266,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/{group-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129424,19 +135327,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129455,18 +135358,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129485,32 +135389,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129529,18 +135435,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicyExclude", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicyExcludeCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129559,33 +135467,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicyExcludeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129604,18 +135513,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicyInclude", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyPermissionGrantPolicyIncludeCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -129634,19 +135545,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyPermissionGrantPolicyIncludeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -129689,19 +135601,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -129744,73 +135656,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", - "Permissions": [ - { - "Name": "RoleManagementPolicy.Read.Directory", - "Description": "Read all policies for privileged role assignments of your company's directory", - "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "RoleManagement.Read.All", - "Description": "Read role management data for all RBAC providers", - "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "RoleManagementPolicy.ReadWrite.Directory", - "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory", - "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "RoleManagement.ReadWrite.Directory", - "Description": "Read and write all directory RBAC settings", - "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "RoleManagement.Read.Directory", - "Description": "Read all directory RBAC settings", - "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicyAssignments", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -129853,18 +135712,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicyAssignments/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -129907,32 +135767,89 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [ + { + "Name": "RoleManagementPolicy.Read.Directory", + "Description": "Read all policies for privileged role assignments of your company's directory", + "FullDescription": "Allows the app to read policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagement.Read.All", + "Description": "Read role management data for all RBAC providers", + "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagementPolicy.ReadWrite.Directory", + "Description": "Read, update, and delete all policies for privileged role assignments of your company's directory", + "FullDescription": "Allows the app to read, update, and delete policies for privileged role-based access control (RBAC) assignments of your company's directory, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "RoleManagement.ReadWrite.Directory", + "Description": "Read and write all directory RBAC settings", + "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "RoleManagement.Read.Directory", + "Description": "Read all directory RBAC settings", + "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -129975,32 +135892,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -130043,18 +135962,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRuleCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -130097,19 +136018,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyEffectiveRuleCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -130152,19 +136074,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -130207,18 +136129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyRule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyRoleManagementPolicyRuleCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -130261,141 +136185,151 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyRoleManagementPolicyRuleCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "Uri": "/policies/servicePrincipalCreationPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyCount", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyExcludeCount", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyIncludeCount", + "ApiReferenceLink": null, "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/$count", - "Permissions": [], + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyServicePrincipalCreationPolicyIncludeCount", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130422,19 +136356,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenIssuancePolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130461,32 +136395,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenIssuancePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130529,18 +136465,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130583,19 +136521,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenIssuancePolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenIssuancePolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130622,18 +136560,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenIssuancePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130660,19 +136600,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenLifetimePolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130699,32 +136639,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130767,18 +136709,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130821,19 +136765,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenLifetimePolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPolicyTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -130860,31 +136804,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaPolicyTokenLifetimePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrint", + "ApiReferenceLink": null, + "Uri": "/print", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintConnector", + "ApiReferenceLink": null, "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -130903,19 +136850,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintConnector", + "ApiReferenceLink": null, "Uri": "/print/connectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -130934,18 +136881,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintConnectorCount", + "ApiReferenceLink": null, "Uri": "/print/connectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -130964,18 +136912,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintOperation", + "ApiReferenceLink": null, "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Create", @@ -131002,45 +136952,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintOperation" }, { - "Uri": "/print/operations", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { - "Uri": "/print/operations/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintOperationCount", + "ApiReferenceLink": null, + "Uri": "/print/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -131091,19 +137044,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinter", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -131130,18 +137083,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinter", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterCapability", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-getcapabilities?view=graph-rest-beta", "Uri": "/print/printers/{printer-id}/getCapabilities", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -131168,33 +137123,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterCapability", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterCapabilities", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-getcapabilities?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPrinterCapabilities" }, { - "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterConnector", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterConnector", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/connectors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -131213,18 +137169,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterConnector", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterConnectorCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/connectors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -131243,19 +137201,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterConnectorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterCount", + "ApiReferenceLink": null, "Uri": "/print/printers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -131282,18 +137240,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -131360,19 +137320,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -131439,18 +137399,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterJob", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterJobCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -131517,19 +137479,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterJobCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Read", @@ -131564,32 +137527,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterJobDocument", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterJobDocumentContent", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Read", @@ -131624,105 +137589,104 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterJobDocumentContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobDocumentCount", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterJobTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/printerShares/{printerShare-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", @@ -131731,175 +137695,197 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/printerShares", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printerShares", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroup", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUser", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareAllowedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterShareCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/shares/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -131926,199 +137912,212 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterShareCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobDocumentCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterShareJobTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/printerShares/{printerShare-id}/printer", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintPrinterSharePrinter", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/printer", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinter" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -132145,19 +138144,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterTaskTrigger", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -132184,18 +138183,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterTaskTrigger", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterTaskTriggerCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -132222,33 +138223,218 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterTaskTriggerCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintPrinterTaskTriggerDefinition", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintPrinterTaskTriggerDefinition", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [ + { + "Name": "PrintJob.ReadBasic", + "Description": "Read basic information of your print jobs", + "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "PrintSettings.ReadWrite.All", + "Description": "Read and write tenant-wide print settings", + "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintSettings.Read.All", + "Description": "Read tenant-wide print settings", + "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.ReadWriteBasic.All", + "Description": "Read and write basic information of print jobs", + "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.ReadWriteBasic", + "Description": "Read and write basic information of your print jobs", + "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.ReadWrite.All", + "Description": "Read and update print jobs", + "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.ReadWrite", + "Description": "Read and update your print jobs", + "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.ReadBasic.All", + "Description": "Read basic information of print jobs", + "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.Read.All", + "Description": "Read print jobs", + "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.Read", + "Description": "Read your print jobs", + "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintJob.Create", + "Description": "Create your print jobs", + "FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrinterShare.ReadWrite.All", + "Description": "Read and update printer shares", + "FullDescription": "Allows the application to read and update printer shares on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrinterShare.ReadBasic.All", + "Description": "Read basic information about printer shares", + "FullDescription": "Allows the application to read basic information about printer shares on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrinterShare.Read.All", + "Description": "Read printer shares", + "FullDescription": "Allows the application to read printer shares on your behalf. ", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Printer.ReadWrite.All", + "Description": "Read and update printers", + "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Printer.Read.All", + "Description": "Read printers", + "FullDescription": "Allows the application to read printers on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Printer.Create", + "Description": "Register printers  ", + "FullDescription": "Allows the application to create (register) printers on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintConnector.ReadWrite.All", + "Description": "Read and write print connectors", + "FullDescription": "Allows the application to read and write print connectors on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintConnector.Read.All", + "Description": "Read print connectors", + "FullDescription": "Allows the application to read print connectors on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintAlertSettings.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrintAlertSettings.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services/{printService-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -132419,201 +138605,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintService", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services", - "Permissions": [ - { - "Name": "PrintJob.ReadBasic", - "Description": "Read basic information of your print jobs", - "FullDescription": "Allows the application to read the metadata of print jobs that you created. Does not allow access to print job document content.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "PrintSettings.ReadWrite.All", - "Description": "Read and write tenant-wide print settings", - "FullDescription": "Allows the application to read and write tenant-wide print settings on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintSettings.Read.All", - "Description": "Read tenant-wide print settings", - "FullDescription": "Allows the application to read tenant-wide print settings on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.ReadWriteBasic.All", - "Description": "Read and write basic information of print jobs", - "FullDescription": "Allows the application to read and update the metadata of print jobs on your behalf. Does not allow access to print job document content.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.ReadWriteBasic", - "Description": "Read and write basic information of your print jobs", - "FullDescription": "Allows the application to read and update the metadata of print jobs that you created. Does not allow access to print job document content.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.ReadWrite.All", - "Description": "Read and update print jobs", - "FullDescription": "Allows the application to read and update the metadata and document content of print jobs on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.ReadWrite", - "Description": "Read and update your print jobs", - "FullDescription": "Allows the application to read and update the metadata and document content of print jobs that you created.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.ReadBasic.All", - "Description": "Read basic information of print jobs", - "FullDescription": "Allows the application to read the metadata of print jobs on your behalf. Does not allow access to print job document content.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.Read.All", - "Description": "Read print jobs", - "FullDescription": "Allows the application to read the metadata and document content of print jobs on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.Read", - "Description": "Read your print jobs", - "FullDescription": "Allows the application to read the metadata and document content of print jobs that you created.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintJob.Create", - "Description": "Create your print jobs", - "FullDescription": "Allows the application to create print jobs on your behalf and upload document content to print jobs that you created.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrinterShare.ReadWrite.All", - "Description": "Read and update printer shares", - "FullDescription": "Allows the application to read and update printer shares on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrinterShare.ReadBasic.All", - "Description": "Read basic information about printer shares", - "FullDescription": "Allows the application to read basic information about printer shares on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrinterShare.Read.All", - "Description": "Read printer shares", - "FullDescription": "Allows the application to read printer shares on your behalf. ", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Printer.ReadWrite.All", - "Description": "Read and update printers", - "FullDescription": "Allows the application to read and update printers on your behalf. Does not allow creating (registering) or deleting (unregistering) printers.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Printer.Read.All", - "Description": "Read printers", - "FullDescription": "Allows the application to read printers on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Printer.Create", - "Description": "Register printers  ", - "FullDescription": "Allows the application to create (register) printers on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintConnector.ReadWrite.All", - "Description": "Read and write print connectors", - "FullDescription": "Allows the application to read and write print connectors on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintConnector.Read.All", - "Description": "Read print connectors", - "FullDescription": "Allows the application to read print connectors on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintAlertSettings.ReadWrite.All", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrintAlertSettings.Read.All", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintService", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService", + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { + "Command": "Get-MgBetaPrintServiceCount", + "ApiReferenceLink": null, "Uri": "/print/services/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -132784,18 +138788,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintServiceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintServiceEndpoint", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -132966,19 +138972,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintServiceEndpoint", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintServiceEndpoint", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -133149,18 +139155,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintServiceEndpoint", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintServiceEndpointCount", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -133331,19 +139339,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintServiceEndpointCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/shares/{printerShare-id}", + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -133370,19 +139379,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShare", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinterShare" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShare", + "ApiReferenceLink": null, "Uri": "/print/shares", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -133409,18 +139418,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShare", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinterShare" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedGroup", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133439,18 +139449,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133469,18 +139480,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedGroupByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedGroupCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133499,46 +139512,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedUser", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133557,18 +139572,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedUserByRef", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133587,18 +139603,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareAllowedUserCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -133617,60 +139635,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareAllowedUserCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareAllowedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareCount", + "ApiReferenceLink": null, "Uri": "/print/shares/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -133697,18 +139718,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -133775,19 +139798,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -133854,18 +139877,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareJob", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintShareJobCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -133932,143 +139957,153 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintShareJobCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobDocumentCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintShareJobTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrintSharePrinter", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/printer", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -134095,116 +140130,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Get-MgBetaPrintSharePrinter", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrintTaskDefinitionTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivacySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -134223,19 +140266,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaPrivacySubjectRightsRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivacySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -134254,182 +140297,195 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaPrivacySubjectRightsRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivacySubjectRightsRequestCount", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -134448,32 +140504,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaPrivacySubjectRightsRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -134492,18 +140550,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaPrivacySubjectRightsRequestNote", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivacySubjectRightsRequestNoteCount", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -134522,1081 +140582,1158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Get-MgBetaPrivacySubjectRightsRequestNoteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivacySubjectRightsRequestTeam", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "Uri": "/privilegedAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "Uri": "/privilegedAccess/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceParent", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentLinkedEligibleRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinitionRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition/roleSetting", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinitionRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition/roleSetting", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleDefinitionRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinitionRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition/roleSetting", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentLinkedEligibleRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/linkedEligibleRoleAssignment", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleDefinitionRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}/roleSetting", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingCount", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedAccessRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApproval", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "Uri": "/privilegedApproval", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApproval", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "Uri": "/privilegedApproval/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalCount", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/request", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/request", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedApprovalRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEvent", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "Uri": "/privilegedOperationEvents", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEvent", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "Uri": "/privilegedOperationEvents/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedOperationEventCount", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoles/{privilegedRole-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRole", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoles", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRole", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, "Uri": "/privilegedRoleAssignmentRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "Directory.Read.All", @@ -135615,18 +141752,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaPrivilegedRoleAssignmentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestCount", + "ApiReferenceLink": null, "Uri": "/privilegedRoleAssignmentRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "Directory.Read.All", @@ -135645,269 +141783,288 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/{privilegedRoleAssignment-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedRoles/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleCount", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaPrivilegedRoleSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/programs/{program-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaProgram", + "ApiReferenceLink": null, + "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgram" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgram", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-list?view=graph-rest-beta", "Uri": "/programs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -135926,21 +142083,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgram", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphProgram" }, { - "Uri": "/programControls/{programControl-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaProgramControl", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", @@ -135949,13 +142100,23 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControl" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgramControl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-list?view=graph-rest-beta", "Uri": "/programControls", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1", + "List2" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -135974,20 +142135,23 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgramControl", - "Variants": [ - "List", - "List1", - "List2" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphProgramControl" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgramControlCount", + "ApiReferenceLink": null, "Uri": "/programControls/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "Get2", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -136006,52 +142170,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgramControlCount", - "Variants": [ - "Get", - "Get1", - "Get2", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/programControls/{programControl-id}/program", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaProgramControlProgram", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgram" }, { - "Uri": "/programControlTypes/{programControlType-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaProgramControlType", + "ApiReferenceLink": null, + "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControlType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgramControlType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontroltype-list?view=graph-rest-beta", "Uri": "/programControlTypes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -136070,18 +142233,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgramControlType", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontroltype-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphProgramControlType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgramControlTypeCount", + "ApiReferenceLink": null, "Uri": "/programControlTypes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -136100,18 +142264,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgramControlTypeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaProgramCount", + "ApiReferenceLink": null, "Uri": "/programs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ProgramControl.Read.All", @@ -136130,150 +142295,162 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaProgramCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/reports/appCredentialSignInActivities/{appCredentialSignInActivity-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivity", + "ApiReferenceLink": null, + "Uri": "/reports/appCredentialSignInActivities/{appCredentialSignInActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppCredentialSignInActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppCredentialSignInActivity" }, { - "Uri": "/reports/appCredentialSignInActivities", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivity", + "ApiReferenceLink": null, + "Uri": "/reports/appCredentialSignInActivities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppCredentialSignInActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppCredentialSignInActivity" }, { - "Uri": "/reports/appCredentialSignInActivities/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAppCredentialSignInActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/appCredentialSignInActivities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummary", + "ApiReferenceLink": null, + "Uri": "/reports/applicationSignInDetailedSummary/{applicationSignInDetailedSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary" }, { - "Uri": "/reports/applicationSignInDetailedSummary", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummary", + "ApiReferenceLink": null, + "Uri": "/reports/applicationSignInDetailedSummary", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationSignInDetailedSummary" }, { - "Uri": "/reports/applicationSignInDetailedSummary/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportApplicationSignInDetailedSummaryCount", + "ApiReferenceLink": null, + "Uri": "/reports/applicationSignInDetailedSummary/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getAttackSimulationRepeatOffenders", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationRepeatOffender", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationrepeatoffenders?view=graph-rest-beta", + "Uri": "/reports/getAttackSimulationRepeatOffenders", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationrepeatoffenders?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "Uri": "/reports/getAttackSimulationTrainingUserCoverage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationTrainingUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta", + "Uri": "/reports/getAttackSimulationTrainingUserCoverage", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "Uri": "/reports/getAttackSimulationSimulationUserCoverage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAttackSimulationUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta", + "Uri": "/reports/getAttackSimulationSimulationUserCoverage", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "Uri": "/reports/authenticationMethods", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -136292,19 +142469,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -136323,18 +142500,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetail", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetailCount", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -136353,3076 +142531,3300 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Get-MgBetaReportAuthenticationMethodUserRegistrationDetailCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportAzureAdApplicationSignInSummary", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getazureadapplicationsigninsummary?view=graph-rest-beta", + "Uri": "/reports/getAzureADApplicationSignInSummary(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationSignInSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getazureadapplicationsigninsummary?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplicationSignInSummary" }, { - "Uri": "/reports/getBrowserDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportBrowserDistributionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getBrowserDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getBrowserUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportBrowserUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getBrowserUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getBrowserUserDetail(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportBrowserUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getBrowserUserDetail(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getCredentialUsageSummary(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportCredentialUsageSummary", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialusagesummary?view=graph-rest-beta", + "Uri": "/reports/getCredentialUsageSummary(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUsageSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialusagesummary?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCredentialUsageSummary" }, { - "Uri": "/reports/getCredentialUserRegistrationCount", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialuserregistrationcount?view=graph-rest-beta", + "Uri": "/reports/getCredentialUserRegistrationCount", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationCount", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getcredentialuserregistrationcount?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationCount" }, { - "Uri": "/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/credentialUserRegistrationDetails/{credentialUserRegistrationDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails" }, { - "Uri": "/reports/credentialUserRegistrationDetails", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/credentialUserRegistrationDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphCredentialUserRegistrationDetails" }, { - "Uri": "/reports/credentialUserRegistrationDetails/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportCredentialUserRegistrationDetailCount", + "ApiReferenceLink": null, + "Uri": "/reports/credentialUserRegistrationDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsage/{printUsage-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsage", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsage/{printUsage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsage" }, { - "Uri": "/reports/dailyPrintUsage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsage", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsage", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsage" }, { - "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageByPrinter", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageByPrinter/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageByUser", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageByUser/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsage/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsage/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageSummariesByPrinter", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByPrinter", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageSummariesByPrinter/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByPrinter/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageSummariesByUser", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByUser", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageSummariesByUser/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDailyPrintUsageSummaryByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageSummariesByUser/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/deviceConfigurationDeviceActivity", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDeviceConfigurationDeviceActivity", + "ApiReferenceLink": null, + "Uri": "/reports/deviceConfigurationDeviceActivity", + "ApiVersion": "beta", "Variants": [ "Device" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/deviceConfigurationUserActivity", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportDeviceConfigurationUserActivity", + "ApiReferenceLink": null, + "Uri": "/reports/deviceConfigurationUserActivity", + "ApiVersion": "beta", "Variants": [ "Device" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageAppUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportEmailAppUsageVersionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getFormsUserActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getFormsUserActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getFormsUserActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getFormsUserActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getFormsUserActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportFormUserActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getFormsUserActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportGroupArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-beta", + "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportM365AppPlatformUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-beta", + "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getM365AppUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportM365AppUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-beta", + "Uri": "/reports/getM365AppUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getM365AppUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportM365AppUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getM365AppUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageDetail(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getMailboxUsageDetail(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageMailboxCount", + "ApiReferenceLink": null, + "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageQuotaStatusMailboxCount", + "ApiReferenceLink": null, + "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMailboxUsageStorage", + "ApiReferenceLink": null, + "Uri": "/reports/getMailboxUsageStorage(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentDetail", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentAbandonmentDetails(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", + "ApiVersion": "beta", "Variants": [ "Detail", "DetailViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentAbandonmentSummary", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentAbandonmentSummary(skip={skip},top={top},filter='{filter}',skipToken='{skipToken}')", + "ApiVersion": "beta", "Variants": [ "Managed", "ManagedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentFailureDetails", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureDetail", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentFailureDetails", + "ApiVersion": "beta", "Variants": [ "Detail", "Detail1", "DetailViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentFailureTrends", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentFailureTrend", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentFailureTrends", + "ApiVersion": "beta", "Variants": [ "Managed" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentTopFailures", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportManagedDeviceEnrollmentTopFailure", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentTopFailures", + "ApiVersion": "beta", "Variants": [ "Top", "Top1", "TopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageByPrinter", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageByPrinter/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageByUser", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageByUser/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageSummariesByPrinter", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByPrinter", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByPrinter/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByUser/{printUsageByUser-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageSummariesByUser", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByUser", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageSummariesByUser/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportMonthlyPrintUsageSummaryByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageSummariesByUser/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationCounts", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ActivationCounts", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationsUserCounts", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ActivationsUserCounts", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationsUserDetail", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ActivationUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ActivationsUserDetail", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ActiveUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ActiveUserCounts", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365ActiveUserCounts" }, { - "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ActiveUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ActiveUserDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365ActiveUserDetail" }, { - "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityCounts" }, { - "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityDetail" }, { - "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityFileCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityFileCounts" }, { - "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityGroupCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityGroupCounts" }, { - "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365GroupActivityStorage", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365GroupsActivityStorage" }, { - "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOffice365ServiceUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOffice365ServicesUserCounts", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphOffice365ServicesUserCounts" }, { - "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityFileCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageAccountCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageAccountDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageFileCount", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportOneDriveUsageStorage", + "ApiReferenceLink": null, + "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartner", + "ApiReferenceLink": null, + "Uri": "/reports/partners", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartners", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartners" }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBilling", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/manifests", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/manifests/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingManifestCount", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/operations", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/operations/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingOperationCount", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingReconciliation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportPrinterArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-beta", + "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportRelyingPartyDetailedSummary", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-beta", + "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary" }, { - "Uri": "/reports/security", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSecurity", + "ApiReferenceLink": null, + "Uri": "/reports/security", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/security/getAttackSimulationRepeatOffenders", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationRepeatOffender", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-beta", + "Uri": "/reports/security/getAttackSimulationRepeatOffenders", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationTrainingUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta", + "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSecurityAttackSimulationUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta", + "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "Uri": "/reports/serviceActivity", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivity", + "ApiReferenceLink": null, + "Uri": "/reports/serviceActivity", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessCompliantDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessCompliantDeviceSignInSuccess", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccesscompliantdevicessigninsuccess?view=graph-rest-beta", + "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessCompliantDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceActivityValueMetric", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccesscompliantdevicessigninsuccess?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessManagedDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForConditionalAccessManagedDeviceSignInSuccess", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccessmanageddevicessigninsuccess?view=graph-rest-beta", + "Uri": "/reports/serviceActivity/getMetricsForConditionalAccessManagedDevicesSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceActivityValueMetric", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforconditionalaccessmanageddevicessigninsuccess?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "Uri": "/reports/serviceActivity/getMetricsForMfaSignInFailure(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInFailure", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninfailure?view=graph-rest-beta", + "Uri": "/reports/serviceActivity/getMetricsForMfaSignInFailure(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceActivityValueMetric", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninfailure?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "Uri": "/reports/serviceActivity/getMetricsForMfaSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForMfaSignInSuccess", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninsuccess?view=graph-rest-beta", + "Uri": "/reports/serviceActivity/getMetricsForMfaSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceActivityValueMetric", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsformfasigninsuccess?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "Uri": "/reports/serviceActivity/getMetricsForSamlSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServiceActivityMetricForSamlSignInSuccess", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforsamlsigninsuccess?view=graph-rest-beta", + "Uri": "/reports/serviceActivity/getMetricsForSamlSignInSuccess(inclusiveIntervalStartDateTime={inclusiveIntervalStartDateTime},exclusiveIntervalEndDateTime={exclusiveIntervalEndDateTime},aggregationIntervalInMinutes=@aggregationIntervalInMinutes)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceActivityValueMetric", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceactivity-getmetricsforsamlsigninsuccess?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceActivityValueMetric" }, { - "Uri": "/reports/servicePrincipalSignInActivities/{servicePrincipalSignInActivity-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivity", + "ApiReferenceLink": null, + "Uri": "/reports/servicePrincipalSignInActivities/{servicePrincipalSignInActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity" }, { - "Uri": "/reports/servicePrincipalSignInActivities", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivity", + "ApiReferenceLink": null, + "Uri": "/reports/servicePrincipalSignInActivities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalSignInActivity" }, { - "Uri": "/reports/servicePrincipalSignInActivities/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportServicePrincipalSignInActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/servicePrincipalSignInActivities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityFileCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityPages(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityPage", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointActivityPages(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageFileCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsagePage", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageSiteCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSharePointSiteUsageStorage", + "ApiReferenceLink": null, + "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageDistributionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessDeviceUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityMinuteCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessOrganizerActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityMinuteCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessParticipantActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityMinuteCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSkypeForBusinessPeerToPeerActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/sla", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSla", + "ApiReferenceLink": null, + "Uri": "/reports/sla", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceLevelAgreementRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceLevelAgreementRoot" }, { - "Uri": "/reports/sla/azureADAuthentication", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportSlaAzureAdAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/sla/azureADAuthentication", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAzureAdAuthentication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAzureAdAuthentication" }, { - "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamActivityDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamActivityDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsTeamActivityDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamActivityDistributionCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsTeamCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageDistributionTotalUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageDistributionTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageDistributionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageTotalUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageTotalUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamDeviceUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityDistributionTotalUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityDistributionTotalUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityDistributionTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityDistributionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityTotalCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityTotalCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityTotalDistributionCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalDistributionCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityTotalDistributionCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityTotalUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityTotalUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityTotalUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportTeamUserActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-beta", + "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetail", + "ApiReferenceLink": null, + "Uri": "/reports/userCredentialUsageDetails/{userCredentialUsageDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserCredentialUsageDetails" }, { - "Uri": "/reports/userCredentialUsageDetails", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetail", + "ApiReferenceLink": null, + "Uri": "/reports/userCredentialUsageDetails", + "ApiVersion": "beta", "Variants": [ "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCredentialUsageDetails", - "Method": "GET", - "ApiReferenceLink": null + ], + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserCredentialUsageDetails" }, { - "Uri": "/reports/userCredentialUsageDetails/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserCredentialUsageDetailCount", + "ApiReferenceLink": null, + "Uri": "/reports/userCredentialUsageDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsight", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInsightsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInsightsRoot" }, { - "Uri": "/reports/userInsights/daily", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDaily", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot" }, { - "Uri": "/reports/userInsights/daily/activeUsers/{activeUsersMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsers/{activeUsersMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "Uri": "/reports/userInsights/daily/activeUsers", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "Uri": "/reports/userInsights/daily/activeUsersBreakdown/{activeUsersBreakdownMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsersBreakdown/{activeUsersBreakdownMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "Uri": "/reports/userInsights/daily/activeUsersBreakdown", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdown", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsersBreakdown", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "Uri": "/reports/userInsights/daily/activeUsersBreakdown/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserBreakdownCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsersBreakdown/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/activeUsers/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyActiveUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/activeUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/authentications/{authenticationsMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/authentications/{authenticationsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "Uri": "/reports/userInsights/daily/authentications", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/authentications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "Uri": "/reports/userInsights/daily/authentications/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyAuthenticationCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/authentications/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/inactiveUsers/{dailyInactiveUsersMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsers/{dailyInactiveUsersMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric" }, { - "Uri": "/reports/userInsights/daily/inactiveUsers", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyInactiveUsersMetric" }, { - "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/{dailyInactiveUsersByApplicationMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/{dailyInactiveUsersByApplicationMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric" }, { - "Uri": "/reports/userInsights/daily/inactiveUsersByApplication", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsersByApplication", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyInactiveUsersByApplicationMetric" }, { - "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserByApplicationCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsersByApplication/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/inactiveUsers/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyInactiveUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/inactiveUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/mfaCompletions/{mfaCompletionMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/mfaCompletions/{mfaCompletionMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMfaCompletionMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "Uri": "/reports/userInsights/daily/mfaCompletions", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletion", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/mfaCompletions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMfaCompletionMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "Uri": "/reports/userInsights/daily/mfaCompletions/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyMfaCompletionCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/mfaCompletions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/signUps/{userSignUpMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUp", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/signUps/{userSignUpMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSignUpMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "Uri": "/reports/userInsights/daily/signUps", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUp", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/signUps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSignUpMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "Uri": "/reports/userInsights/daily/signUps/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySignUpCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/signUps/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/summary/{insightSummary-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummary", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/summary/{insightSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphInsightSummary" }, { - "Uri": "/reports/userInsights/daily/summary", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummary", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/summary", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphInsightSummary" }, { - "Uri": "/reports/userInsights/daily/summary/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailySummaryCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/summary/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily/userCount/{userCountMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/userCount/{userCountMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCountMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserCountMetric" }, { - "Uri": "/reports/userInsights/daily/userCount", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightDailyUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily/userCount", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserCountMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserCountMetric" }, { - "Uri": "/reports/userInsights/monthly", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthly", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot" }, { - "Uri": "/reports/userInsights/monthly/activeUsers/{activeUsersMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsers/{activeUsersMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "Uri": "/reports/userInsights/monthly/activeUsers", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersMetric" }, { - "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/{activeUsersBreakdownMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/{activeUsersBreakdownMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "Uri": "/reports/userInsights/monthly/activeUsersBreakdown", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdown", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsersBreakdown", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphActiveUsersBreakdownMetric" }, { - "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserBreakdownCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsersBreakdown/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/activeUsers/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyActiveUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/activeUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/authentications/{authenticationsMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/authentications/{authenticationsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "Uri": "/reports/userInsights/monthly/authentications", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/authentications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationsMetric" }, { - "Uri": "/reports/userInsights/monthly/authentications/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyAuthenticationCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/authentications/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/inactiveUsers/{monthlyInactiveUsersMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsers/{monthlyInactiveUsersMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric" }, { - "Uri": "/reports/userInsights/monthly/inactiveUsers", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUser", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyInactiveUsersMetric" }, { - "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/{monthlyInactiveUsersByApplicationMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/{monthlyInactiveUsersByApplicationMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric" }, { - "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplication", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyInactiveUsersByApplicationMetric" }, { - "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserByApplicationCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsersByApplication/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/inactiveUsers/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyInactiveUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/inactiveUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/mfaCompletions/{mfaCompletionMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/mfaCompletions/{mfaCompletionMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMfaCompletionMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "Uri": "/reports/userInsights/monthly/mfaCompletions", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletion", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/mfaCompletions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMfaCompletionMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMfaCompletionMetric" }, { - "Uri": "/reports/userInsights/monthly/mfaCompletions/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyMfaCompletionCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/mfaCompletions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/requests/{userRequestsMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequest", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/requests/{userRequestsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRequestsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRequestsMetric" }, { - "Uri": "/reports/userInsights/monthly/requests", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequest", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/requests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRequestsMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRequestsMetric" }, { - "Uri": "/reports/userInsights/monthly/requests/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlyRequestCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/requests/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/signUps/{userSignUpMetric-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUp", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/signUps/{userSignUpMetric-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSignUpMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "Uri": "/reports/userInsights/monthly/signUps", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUp", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/signUps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSignUpMetric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSignUpMetric" }, { - "Uri": "/reports/userInsights/monthly/signUps/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySignUpCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/signUps/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly/summary/{insightSummary-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummary", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/summary/{insightSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphInsightSummary" }, { - "Uri": "/reports/userInsights/monthly/summary", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummary", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/summary", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphInsightSummary" }, { - "Uri": "/reports/userInsights/monthly/summary/$count", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportUserInsightMonthlySummaryCount", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly/summary/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerActivityUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerActivityUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageDistributionUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerDeviceUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaReportYammerGroupActivityGroupCount", + "ApiReferenceLink": null, + "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskDetections", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskDetections/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskDetectionCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyServicePrincipal", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -139441,19 +145843,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyServicePrincipal", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyServicePrincipal", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -139472,18 +145874,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyServicePrincipalCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -139502,32 +145905,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyServicePrincipalCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyServicePrincipalHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -139546,18 +145951,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyServicePrincipalHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyServicePrincipalHistoryCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -139576,59 +145983,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyServicePrincipalHistoryCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRiskyUserCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyUserHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -139647,19 +146058,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyUserHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyUserHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -139678,18 +146089,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyUserHistory", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRiskyUserHistoryCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -139708,19 +146121,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaRiskyUserHistoryCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -139755,140 +146168,151 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleManagement", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleManagement" }, { - "Uri": "/roleManagement/cloudPC", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPc", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -139923,19 +146347,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -139970,59 +146394,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentAppScopeCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -140057,114 +146485,123 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentDirectoryScopeCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentPrincipalCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -140271,19 +146708,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -140390,18 +146827,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -140508,45 +146946,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -140581,127 +147022,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -140736,19 +147187,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -140783,59 +147234,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScopeCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -140870,114 +147325,123 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentDirectoryScopeCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/directoryScopes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentPrincipalCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/principals/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -141084,19 +147548,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -141203,18 +147667,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -141321,58 +147786,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141399,19 +147869,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141438,18 +147908,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespace", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141476,18 +147947,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141514,19 +147987,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141553,32 +148026,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141605,33 +148081,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141674,19 +148152,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141729,113 +148207,121 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -141878,60 +148364,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -141974,19 +148465,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142029,46 +148520,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142111,32 +148605,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142179,19 +148676,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142234,46 +148731,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142316,74 +148816,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142426,19 +148932,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142481,46 +148987,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -142563,88 +149072,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -142687,19 +149203,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -142742,18 +149258,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -142796,59 +149313,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -142891,19 +149413,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -142946,32 +149468,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143014,32 +149538,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143082,19 +149609,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143137,32 +149664,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143205,74 +149734,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143315,19 +149850,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143370,32 +149905,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -143438,102 +149975,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/transitiveRoleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -143568,32 +150112,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/transitiveRoleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -143628,1342 +150174,1440 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseApp", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/enterpriseApps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseApp", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/enterpriseApps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145022,19 +151666,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145093,113 +151737,121 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStepCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145258,404 +151910,434 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145762,19 +152444,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145881,18 +152563,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -145999,470 +152682,505 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/$count", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchange", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146489,19 +153207,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAppScope", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/customAppScopes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146528,18 +153246,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeCustomAppScope", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAppScope", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeCustomAppScopeCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/customAppScopes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146566,127 +153285,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeCustomAppScopeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionAuthenticationContext", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/authenticationContext", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146729,19 +153458,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146784,32 +153513,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146852,60 +153583,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -146964,19 +153700,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -147035,18 +153771,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/exchange/roleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "RoleManagement.Read.Exchange", @@ -147105,141 +153842,152 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/$count", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaRoleManagementExchangeTransitiveRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-beta", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -147258,19 +154006,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.SchemaExtensions", - "Command": "Get-MgBetaSchemaExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSchemaExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-beta", "Uri": "/schemaExtensions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -147289,18 +154037,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.SchemaExtensions", - "Command": "Get-MgBetaSchemaExtension", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSchemaExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSchemaExtensionCount", + "ApiReferenceLink": null, "Uri": "/schemaExtensions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -147319,18 +154068,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.SchemaExtensions", - "Command": "Get-MgBetaSchemaExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchAcronym", + "ApiReferenceLink": null, "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147349,19 +154100,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchAcronym", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchAcronym" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchAcronym", + "ApiReferenceLink": null, "Uri": "/search/acronyms", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147380,18 +154131,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchAcronym", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchAcronym" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchAcronymCount", + "ApiReferenceLink": null, "Uri": "/search/acronyms/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147410,18 +154162,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchAcronymCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchBookmark", + "ApiReferenceLink": null, "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147440,19 +154194,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchBookmark", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchBookmark", + "ApiReferenceLink": null, "Uri": "/search/bookmarks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147471,18 +154225,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchBookmark", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchBookmarkCount", + "ApiReferenceLink": null, "Uri": "/search/bookmarks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147501,31 +154256,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchBookmarkCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/search", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSearchEntity", + "ApiReferenceLink": null, + "Uri": "/search", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchEntity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchEntity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchQna", + "ApiReferenceLink": null, "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147544,19 +154302,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchQna", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchQna", + "ApiReferenceLink": null, "Uri": "/search/qnas", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147575,18 +154333,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchQna", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSearchQnaCount", + "ApiReferenceLink": null, "Uri": "/search/qnas/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -147605,18 +154364,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Get-MgBetaSearchQnaCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAction", + "ApiReferenceLink": null, "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityActions.Read.All", @@ -147635,19 +154396,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAction", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAction" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAction", + "ApiReferenceLink": null, "Uri": "/security/securityActions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityActions.Read.All", @@ -147666,18 +154427,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAction", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAction" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityActionCount", + "ApiReferenceLink": null, "Uri": "/security/securityActions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityActions.Read.All", @@ -147696,18 +154458,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityActionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlert", + "ApiReferenceLink": null, "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -147726,19 +154490,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlert", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlert", + "ApiReferenceLink": null, "Uri": "/security/alerts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -147757,18 +154521,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlert", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlertCount", + "ApiReferenceLink": null, "Uri": "/security/alerts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -147787,18 +154552,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlertCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlertV2", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -147817,19 +154584,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlertV2", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlertV2", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -147848,18 +154615,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlertV2", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAlertV2Count", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2/$count", + "ApiVersion": "beta", + "Variants": [ + "Get1" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -147878,562 +154646,604 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAlertV2Count", - "Variants": [ - "Get1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/attackSimulation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationRoot" }, { - "Uri": "/security/attackSimulation/simulations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationAutomationRunCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/attackSimulation/simulations/$count", - "Permissions": [], "Module": "Beta.Security", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationEndUserNotificationDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLandingPageDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/loginPages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/loginPages/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationLoginPageCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/operations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/operations/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationOperationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPayload", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/payloads", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPayload", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/payloads/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationPayloadCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTraining", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTraining", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingCampaign", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "Uri": "/security/attackSimulation/trainingCampaigns", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaign", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingCampaign", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "Uri": "/security/attackSimulation/trainingCampaigns/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCampaignCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAttackSimulationTrainingLanguageDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/auditLog", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAuditLog", + "ApiReferenceLink": null, + "Uri": "/security/auditLog", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAuditLogQuery", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries/{auditLogQuery-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -148492,19 +155302,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAuditLogQuery", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAuditLogQuery", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -148563,18 +155373,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAuditLogQuery", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAuditLogQueryCount", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -148633,32 +155444,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAuditLogQueryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityAuditLogQueryRecord", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAuditLogQueryRecord", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -148717,18 +155530,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAuditLogQueryRecord", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityAuditLogQueryRecordCount", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -148787,32 +155602,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityAuditLogQueryRecordCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCasesRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148831,19 +155648,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148862,18 +155679,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCase", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148892,18 +155710,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148922,19 +155742,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148953,18 +155773,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -148983,19 +155805,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149014,33 +155837,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149059,18 +155883,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149089,47 +155915,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSourceSite", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149148,18 +155976,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149178,74 +156008,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149264,18 +156098,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149294,19 +156130,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149325,19 +156162,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149356,18 +156193,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHold", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149386,88 +156225,93 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}/site", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSourceSite", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149486,18 +156330,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149516,19 +156362,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149547,74 +156394,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149633,18 +156484,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperationCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149663,19 +156516,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseOperationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149694,19 +156548,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149725,18 +156579,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSet", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149755,19 +156611,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149786,19 +156643,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149817,32 +156674,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149861,19 +156721,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/custodian", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/custodian", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149892,33 +156753,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileCustodian", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149933,50 +156796,53 @@ "Description": "Read and write all eDiscovery objects", "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag", - "Variants": [ - "Get", - "GetViaIdentity" + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileTagCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/tags/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -149995,19 +156861,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150026,18 +156892,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150056,19 +156924,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseReviewSetQueryCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150087,19 +156956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150118,73 +156987,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150203,60 +157078,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchCustodianSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/lastEstimateStatisticsOperation", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150275,60 +157154,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150347,19 +157230,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseSetting", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150378,19 +157262,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150409,59 +157293,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagChildTagCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -150480,86 +157369,92 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCaseEdiscoveryCaseTagParent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "Uri": "/security/cloudAppSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "Uri": "/security/cloudAppSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCloudAppSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/collaboration", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityCollaboration", + "ApiReferenceLink": null, + "Uri": "/security/collaboration", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCollaborationRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCollaborationRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": null, "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAnalyzedMessage.Read.All", @@ -150578,19 +157473,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": null, "Uri": "/security/collaboration/analyzedEmails", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAnalyzedMessage.Read.All", @@ -150609,18 +157504,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmail", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmailCount", + "ApiReferenceLink": null, "Uri": "/security/collaboration/analyzedEmails/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityAnalyzedMessage.Read.All", @@ -150639,191 +157535,206 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityCollaborationAnalyzedEmailCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "Uri": "/security/domainSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "Uri": "/security/domainSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityDomainSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "Uri": "/security/fileSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "Uri": "/security/fileSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityFileSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "Uri": "/security/hostSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "Uri": "/security/hostSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityHostSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/identities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIdentity", + "ApiReferenceLink": null, + "Uri": "/security/identities", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIdentityContainer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIdentityContainer" }, { - "Uri": "/security/identities/healthIssues/{healthIssue-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssue", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues/{healthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "Uri": "/security/identities/healthIssues", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssue", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "Uri": "/security/identities/healthIssues/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIdentityHealthIssueCount", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityIncident", + "ApiReferenceLink": null, "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -150842,19 +157753,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityIncident", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityIncident" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityIncident", + "ApiReferenceLink": null, "Uri": "/security/incidents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -150873,73 +157784,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityIncident", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlert", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/incidents/{incident-id}/alerts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlert", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlertCommentCount", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/incidents/{incident-id}/alerts/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIncidentAlertCount", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityIncidentCount", + "ApiReferenceLink": null, "Uri": "/security/incidents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -150958,31 +157874,33 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityIncidentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, "Uri": "/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -151001,18 +157919,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityInformationProtectionLabelPolicySetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -151031,19 +157951,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/security/informationProtection/sensitivityLabels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -151062,18 +157982,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelCount", + "ApiReferenceLink": null, "Uri": "/security/informationProtection/sensitivityLabels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -151092,340 +158013,366 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "Uri": "/security/ipSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "Uri": "/security/ipSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityIPSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityLabelsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/authorities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/authorities/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelAuthorityCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategoryCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCategorySubcategoryCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/citations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/citations/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelCitationCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/departments", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/departments/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelDepartmentCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/filePlanReferences", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/filePlanReferences/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelFilePlanReferenceCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityLabelRetentionLabel", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -151444,19 +158391,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityLabelRetentionLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityLabelRetentionLabel", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -151475,18 +158422,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityLabelRetentionLabel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityLabelRetentionLabelCount", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -151505,196 +158453,211 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityLabelRetentionLabelCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorAuthorityTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCategoryTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorCitationTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorDepartmentTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityLabelRetentionLabelDispositionReviewStageCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSetting", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "Uri": "/security/providerTenantSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSetting", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "Uri": "/security/providerTenantSettings/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityProviderTenantSettingCount", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/rules", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityRule", + "ApiReferenceLink": null, + "Uri": "/security/rules", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRulesRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRulesRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityRuleDetectionRule", + "ApiReferenceLink": null, "Uri": "/security/rules/detectionRules/{detectionRule-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "CustomDetection.Read.All", @@ -151713,19 +158676,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityRuleDetectionRule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDetectionRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityRuleDetectionRule", + "ApiReferenceLink": null, "Uri": "/security/rules/detectionRules", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "CustomDetection.Read.All", @@ -151744,18 +158707,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityRuleDetectionRule", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDetectionRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityRuleDetectionRuleCount", + "ApiReferenceLink": null, "Uri": "/security/rules/detectionRules/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "CustomDetection.Read.All", @@ -151774,18 +158738,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityRuleDetectionRuleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScore", + "ApiReferenceLink": null, "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151804,19 +158770,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScore", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScore" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScore", + "ApiReferenceLink": null, "Uri": "/security/secureScores", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151835,18 +158801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScore", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScore" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151865,19 +158833,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScoreControlProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151896,18 +158864,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScoreControlProfile", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScoreControlProfileCount", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151926,18 +158895,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScoreControlProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySecureScoreCount", + "ApiReferenceLink": null, "Uri": "/security/secureScores/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -151956,18 +158926,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySecureScoreCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -151986,19 +158958,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -152017,182 +158989,195 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequestCount", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -152211,18 +159196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalAttachment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-beta", "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalAttachment", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -152241,47 +159228,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalAttachment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestFinalReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-beta", + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -152300,18 +159289,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequestNote", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecuritySubjectRightsRequestNoteCount", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -152330,630 +159321,666 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecuritySubjectRightsRequestNoteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecuritySubjectRightsRequestTeam", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityThreatIntelligence", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/articleIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceArticleIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostChildHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostComponents", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostComponents/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostComponentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostCookies", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostCookies/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCookieHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPairs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairChildHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostPairs/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPairParentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostParentHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDns", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverse", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPassiveDnsReverseCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostPorts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostPorts/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostPortMostRecentSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostReputation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", @@ -152962,792 +159989,858 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSslCertificateHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostSubdomainCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/hostTrackers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostTrackerHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/whois", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceHostWhoi", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/whois", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/intelProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/intelProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceIntelProfileIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligencePassiveDnsRecordParentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceProfileIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/sslCertificates", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/sslCertificates/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSslCertificateRelatedHostCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/subdomains", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/subdomains/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceSubdomainHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityArticleCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityComponentCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceVulnerabilityCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisHistoryRecordHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistory", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHistoryCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatIntelligenceWhoisRecordHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatSubmission", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityThreatSubmission", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -153782,19 +160875,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreats", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -153829,18 +160922,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreat", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatCount", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreats/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -153875,18 +160969,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -153929,19 +161025,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -153984,18 +161080,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicyCount", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154038,18 +161135,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154084,19 +161183,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/fileThreats", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154131,18 +161230,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionFileThreat", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionFileThreatCount", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/fileThreats/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154177,18 +161277,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionFileThreatCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154223,19 +161325,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/urlThreats", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154270,18 +161372,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreat", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreatCount", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/urlThreats/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.Read", @@ -154316,71 +161419,77 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityThreatSubmissionUrlThreatCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/tiIndicators/{tiIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicator", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { - "Uri": "/security/tiIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicator", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { - "Uri": "/security/tiIndicators/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityTiIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityTriggersRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154399,19 +161508,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerRetentionEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154430,18 +161539,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerRetentionEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerRetentionEventCount", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154460,18 +161570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerRetentionEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}/retentionEventType", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154490,32 +161602,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerRetentionEventType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154534,19 +161648,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154565,18 +161679,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventType", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventTypeCount", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -154595,343 +161710,310 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaSecurityTriggerTypeRetentionEventTypeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "Uri": "/security/userSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "Uri": "/security/userSecurityProfiles/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSecurityUserSecurityProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/$count", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementHealthOverviewIssueCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues/$count", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementIssueCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentArchive", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/$count", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServiceAnnouncementMessageCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read all applications", - "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.OwnedBy", - "Description": "Manage apps that this app creates or owns", - "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write all applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -154944,9 +162026,9 @@ { "Name": "Directory.ReadWrite.All", "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", + "IsAdmin": false, + "PermissionType": "Application", "IsLeastPrivilege": false }, { @@ -154974,73 +162056,133 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", + "OutputType": "IMicrosoftGraphServicePrincipal" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-beta", + "Uri": "/servicePrincipals", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [ + { + "Name": "Application.Read.All", + "Description": "Read all applications", + "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Application.ReadWrite.OwnedBy", + "Description": "Manage apps that this app creates or owns", + "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write all applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppManagementPolicyCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155083,18 +162225,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalAppRoleAssignedTo", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalAppRoleAssignedToCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155137,33 +162281,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalAppRoleAssignedToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155206,18 +162351,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155260,19 +162407,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalAppRoleAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals(appId='{appId}')", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155315,33 +162463,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalByAppId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/getByIds", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaServicePrincipalById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/servicePrincipals/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -155384,18 +162533,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalClaimMappingPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -155438,18 +162588,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -155492,19 +162644,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalClaimMappingPolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155547,32 +162699,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalCreatedObject", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155615,45 +162769,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalCreatedObject", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalCreatedObjectCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155696,47 +162854,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalCreatedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalCreatedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155763,18 +162923,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassification", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -155801,19 +162963,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalDelegatedPermissionClassificationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-beta", "Uri": "/servicePrincipals/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -155856,59 +163018,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalEndpointCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -155951,18 +163117,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -156005,18 +163172,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -156059,74 +163228,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalHomeRealmDiscoveryPolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetailCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/getTeamsLicensingDetails", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalLicenseDetailTeamLicensingDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/getTeamsLicensingDetails", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsLicensingDetails", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsLicensingDetails" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaServicePrincipalMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156209,21 +163385,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaServicePrincipalMemberObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156322,35 +163499,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOf", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalMemberOf", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156393,99 +163569,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalMemberOfCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156528,75 +163712,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -156623,18 +163811,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -156661,33 +163851,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOauth2PermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOwnedObject", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156730,126 +163921,136 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOwnedObject", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOwnedObjectCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -156892,75 +164093,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOwnedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOwner", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -157003,99 +164208,106 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOwner", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOwnerByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -157138,18 +164350,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalOwnerCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -157192,61 +164406,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaServicePrincipalPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-getpasswordsinglesignoncredentials?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/getPasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157281,130 +164501,139 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalPasswordSingleSignOnCredential", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-getpasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalRiskDetectionCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaServicePrincipalSynchronizationAccessToken", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken", + "ApiVersion": "beta", + "Variants": [ + "Acquire", + "AcquireExpanded", + "AcquireViaIdentity", + "AcquireViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157423,21 +164652,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationAccessToken", - "Variants": [ - "Acquire", - "AcquireExpanded", - "AcquireViaIdentity", - "AcquireViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157464,19 +164692,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157503,46 +164731,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationJobCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157569,19 +164801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationJobCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "Module": "Beta.Applications", "Permissions": [ { "Name": "CustomSecAttributeProvisioning.Read.All", @@ -157624,74 +164857,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationJobSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationSecretCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157718,19 +164956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157757,18 +164995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157795,19 +165035,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -157834,115 +165075,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenIssuancePolicyCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -157985,18 +165233,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -158039,33 +165289,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalTokenLifetimePolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -158100,99 +165351,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -158227,75 +165486,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaServicePrincipalTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaServicePrincipalUserOwnedObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/servicePrincipals/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSettingCount", + "ApiReferenceLink": null, "Uri": "/settings/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -158330,141 +165593,152 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareCount", + "ApiReferenceLink": null, + "Uri": "/shares/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaShareDriveItem", + "ApiReferenceLink": null, "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -158491,19 +165765,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaShareDriveItem", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaShareDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -158554,19 +165829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaShareDriveItemContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaShareDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -158617,1034 +165893,1105 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaShareDriveItemContentStream", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListActivity", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListColumnCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/drive", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListDrive", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemActivity", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/delta", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/items/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListOperationCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/shares/{sharedDriveItem-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareRoot", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareRootContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareRootContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-beta", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -159671,46 +167018,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/shares", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/site", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaShareSite", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-beta", "Uri": "/sites/{site-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -159729,19 +167079,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSite", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list?view=graph-rest-beta", "Uri": "/sites", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -159760,32 +167110,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSite", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteAnalytic", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -159836,143 +167189,153 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteAnalyticLastSevenDay", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/analytics/lastSevenDays", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -160023,19 +167386,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteAnalyticLastSevenDay", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/analytics/allTime", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -160086,19 +167450,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteAnalyticTime", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", + "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160133,33 +167498,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteApplicableContentTypeForList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160194,19 +167561,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160241,18 +167608,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteColumn", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160287,33 +167656,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160348,19 +167719,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160395,80 +167766,86 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentType", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160503,19 +167880,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentTypeColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160550,18 +167927,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentTypeColumn", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentTypeColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160596,115 +167975,123 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentTypeColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", "Uri": "/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -160723,19 +168110,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentTypeCompatibleHubContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/contentTypes/$count", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160770,19 +168158,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteContentTypeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteCount", + "ApiReferenceLink": null, "Uri": "/sites/$count", + "ApiVersion": "beta", + "Variants": [ + "Get1" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160801,18 +168189,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteCount", - "Variants": [ - "Get1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteDefaultDrive", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drive", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -160863,19 +168253,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta", "Uri": "/sites/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -160894,32 +168284,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteDrive", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drives", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -160970,18 +168362,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteDrive", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteDriveCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drives/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -161032,414 +168426,443 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/externalColumns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/externalColumns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteExternalColumnCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta", + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetGraphBPrePathActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteGetGraphBPrePathByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161458,19 +168881,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists", + "ApiVersion": "beta", + "Variants": [ + "List1" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161489,18 +168912,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteList", - "Variants": [ - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListActivity", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/activities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -161551,18 +168975,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListActivity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityOld" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161597,19 +169023,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161644,18 +169070,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListColumn", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161690,33 +169118,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161751,19 +169181,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161798,18 +169228,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentType", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161844,19 +169276,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentTypeColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161891,18 +169323,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentTypeColumn", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentTypeColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -161937,115 +169371,123 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentTypeColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -162064,19 +169506,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentTypeCompatibleHubContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162111,19 +169554,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListContentTypeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/$count", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162142,88 +169586,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/drive", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162250,19 +169700,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162281,32 +169731,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItem", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemActivity", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -162357,32 +169809,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemActivity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemActivityCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -162433,75 +169888,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemActivityCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemActivityListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemAnalytic", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -162552,74 +170012,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", "Uri": "/sites/{site-id}/lists/{list-id}/items/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162638,21 +170105,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphListItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162695,19 +170161,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemDocumentSetVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162750,18 +170216,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemDocumentSetVersion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemDocumentSetVersionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162804,33 +170272,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemDocumentSetVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemDriveItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.Read", @@ -162881,61 +170351,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162954,19 +170428,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -162985,18 +170459,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemVersion", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListItemVersionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -163015,33 +170491,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListItemVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -163076,19 +170554,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -163123,18 +170601,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteListOperationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -163169,60 +170649,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteListOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163265,19 +170749,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163320,18 +170804,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteNotebookCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163374,19 +170860,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteNotebookCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaSiteOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -163429,75 +170918,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163540,18 +170973,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163594,33 +171028,91 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenotePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -163655,19 +171147,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenotePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenotePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -163702,32 +171194,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenotePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenotePageCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -163762,33 +171257,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenotePageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -163823,33 +171320,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163892,19 +171391,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -163947,18 +171446,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -164001,19 +171502,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -164056,19 +171558,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -164111,19 +171614,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -164163,24 +171669,22 @@ "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", "IsAdmin": false, "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -164223,18 +171727,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -164269,18 +171774,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaSiteOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164315,19 +171822,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164362,18 +171869,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteOperationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164408,19 +171917,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteOperationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164439,19 +171949,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSitePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBaseSitePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSitePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164470,32 +171980,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSitePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSitePageAsSitePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages/sitePage", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164514,361 +172026,388 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSitePageAsSitePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageAsSitePageWebPartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSitePageCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164887,19 +172426,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSitePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSitePageCountAsSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/sitePage/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/pages/sitePage/$count", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -164918,212 +172458,227 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSitePageCountAsSitePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSitePermissionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Notes.Create", @@ -165166,19 +172721,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteRecentNotebook", + "OutputType": "IMicrosoftGraphRecentNotebook" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/termStore", + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165197,19 +172753,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStore", + "OutputType": "IMicrosoftGraphTermStore" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165228,19 +172785,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165259,18 +172816,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroupCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165289,33 +172848,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroupSet", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165334,174 +172894,186 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroupSet", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroupSetCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165520,116 +173092,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroupSetCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165648,281 +173228,301 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreGroupSetTerm", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSet", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -165941,48 +173541,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetChild", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166001,743 +173604,793 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetChild", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetParentGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetRelation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166756,18 +174409,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetRelation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetRelationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166786,61 +174441,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetRelationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetTerm", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166859,46 +174518,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetTerm", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetTermChild", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166917,18 +174578,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetTermChild", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetTermChildCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -166947,144 +174610,153 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetTermChildCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -167103,18 +174775,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetTermRelation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSiteTermStoreSetTermRelationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -167133,75 +174807,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSiteTermStoreSetTermRelationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSiteTermStoreSetTermSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaSubscribedSku", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-get?view=graph-rest-beta", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -167236,19 +174915,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaSubscribedSku", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSubscribedSku" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaSubscribedSku", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-list?view=graph-rest-beta", "Uri": "/subscribedSkus", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -167283,59 +174962,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaSubscribedSku", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-get?view=graph-rest-beta", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-get?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/subscriptions", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-list?view=graph-rest-beta", + "Uri": "/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-list?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/sites/{site-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaSubSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSubSite", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/sites", + "ApiVersion": "beta", + "Variants": [ + "List2" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -167354,18 +175037,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSubSite", - "Variants": [ - "List2" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaSubSiteCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/sites/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -167384,19 +175069,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaSubSiteCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-beta", + "Uri": "/teams/{team-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -167471,19 +175157,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeam", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-beta", "Uri": "/teams", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -167510,18 +175196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeam", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -167596,19 +175284,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannel", - "Variants": [ - "Get1", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels", + "ApiVersion": "beta", + "Variants": [ + "List1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -167683,18 +175371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannel", - "Variants": [ - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -167769,19 +175459,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Files.Read.All", @@ -167856,47 +175547,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelFileFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -167931,19 +175625,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -167970,18 +175664,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -168008,19 +175704,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168055,21 +175754,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessage", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168104,18 +175801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168150,19 +175849,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168197,19 +175897,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168244,21 +175947,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168293,18 +175994,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168339,19 +176042,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageHostedContentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168386,19 +176090,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReply", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReply", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168433,18 +176137,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReply", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReplyCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168479,19 +176185,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReplyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168526,19 +176233,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReplyDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168573,21 +176283,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168622,18 +176330,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReplyHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -168668,33 +176378,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelMessageReplyHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/getAllRetainedMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamChannelRetainedMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/getAllRetainedMessages", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelSharedWithTeam", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -168713,21 +176427,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelSharedWithTeam", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelSharedWithTeam", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -168746,32 +176458,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelSharedWithTeam", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -168790,18 +176504,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -168820,19 +176536,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelSharedWithTeamAllowedMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -168851,19 +176568,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelSharedWithTeamCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -168962,19 +176680,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelTab", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -169073,18 +176791,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelTab", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamChannelTabCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -169183,33 +176903,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamChannelTabCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamCount", + "ApiReferenceLink": null, "Uri": "/teams/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -169236,59 +176957,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/group/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/incomingChannels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/incomingChannels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamIncomingChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/incomingChannels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -169315,18 +177040,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamIncomingChannel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamIncomingChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/incomingChannels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -169353,19 +177080,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamIncomingChannelCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -169512,19 +177240,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamInstalledApp", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -169663,18 +177391,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamInstalledAppCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/installedApps/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -169813,47 +177543,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -169880,19 +177613,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -169919,18 +177652,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -169957,19 +177692,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamOpenShift", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getopenshifts?view=graph-rest-beta", "Uri": "/teams/getOpenShifts", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -170044,155 +177779,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamOpenShift", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getopenshifts?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/operations/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOperationCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/owners/{user-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwner", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/{user-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/teams/{team-id}/owners", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwner", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/teams/{team-id}/owners/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwnerCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwnerMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwnerServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamOwnerServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamPermissionGrant", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -170275,18 +178021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/permissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -170369,47 +178117,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/photo", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/teams/{team-id}/photo/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamPrimaryChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -170452,437 +178203,468 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamPrimaryChannel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/delta", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamPrimaryChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamSchedule", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -170917,19 +178699,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamSchedule", + "OutputType": "IMicrosoftGraphSchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -170948,19 +178731,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleDayNote", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDayNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleDayNote", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/dayNotes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -170979,18 +178762,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleDayNote", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDayNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleDayNoteCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/dayNotes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171009,19 +178794,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleDayNoteCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171056,49 +178842,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleOfferShiftRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests", - "Permissions": [ - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -171117,35 +178873,28 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphOfferShiftRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOfferShiftRequestCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "Module": "Beta.Teams", "Permissions": [ - { - "Name": "Schedule.Read.All", - "Description": "Read your schedule items", - "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, { "Name": "Schedule.ReadWrite.All", "Description": "Read and write your schedule items", "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", "IsAdmin": true, "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false + "IsLeastPrivilege": true }, { "Name": "Group.ReadWrite.All", @@ -171154,29 +178903,22 @@ "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false - }, - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171211,18 +178953,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171257,19 +179000,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171304,18 +179048,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171350,19 +179095,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171397,19 +179143,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleOpenShiftCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171444,19 +179191,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171491,18 +179239,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171537,19 +179286,68 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleSchedulingGroupCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [ + { + "Name": "Schedule.Read.All", + "Description": "Read your schedule items", + "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -171584,19 +179382,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShift", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171631,18 +179429,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShift", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShiftCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171677,19 +179477,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShiftCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171716,19 +179517,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171755,18 +179556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShiftRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleShiftRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171793,33 +179596,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleShiftRoleDefinitionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171854,18 +179658,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequestCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171900,19 +179706,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleSwapShiftChangeRequestCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171931,19 +179738,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeCard", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeCard" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeCards", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171962,18 +179769,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeCard", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeCard" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeCardCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeCards/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -171988,23 +179797,24 @@ "Description": "Read and write all schedule items", "FullDescription": "Allows the app to manage all schedules, schedule groups, shifts and associated entities in the Teams or Shifts application without a signed-in user.", "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeCardCount", - "Variants": [ - "Get", - "GetViaIdentity" + "PermissionType": "Application", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOff", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172039,19 +179849,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOff", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOff" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOff", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172086,18 +179896,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOff", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOff" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172132,19 +179944,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172179,19 +179992,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffReason", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffReason" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffReason", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172226,18 +180039,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffReason", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffReason" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffReasonCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffReasons/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172272,19 +180087,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffReasonCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172319,19 +180135,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172366,18 +180182,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffRequest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamScheduleTimeOffRequestCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffRequests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -172412,19 +180230,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamScheduleTimeOffRequestCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamShift", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getshifts?view=graph-rest-beta", "Uri": "/teams/getShifts", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -172499,18 +180317,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamShift", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-getshifts?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTag", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172545,19 +180365,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTag", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172592,18 +180412,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTagCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172638,19 +180460,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTagCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172685,19 +180508,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTagMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTagMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172732,18 +180555,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTagMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTagMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -172778,47 +180603,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTagMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/template", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/template", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/templateDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/templateDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamTimeOff", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-gettimesoff?view=graph-rest-beta", "Uri": "/teams/getTimesOff", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -172893,586 +180720,629 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamTimeOff", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-gettimesoff?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/teamwork", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamwork", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-beta", + "Uri": "/teamwork", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamwork", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamwork" }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedChats", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedChat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedChat" }, { - "Uri": "/teamwork/deletedChats/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedChatCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/getAllRetainedMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelRetainedMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/getAllRetainedMessages", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-getallretainedmessages?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/teamwork/deletedTeams/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkDeletedTeamCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDevice", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/{teamworkDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173491,19 +181361,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDevice", + "ApiReferenceLink": null, "Uri": "/teamwork/devices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173522,18 +181392,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceActivity", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/{teamworkDevice-id}/activity", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173552,19 +181424,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceActivity", + "OutputType": "IMicrosoftGraphTeamworkDeviceActivity" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceActivity", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173583,19 +181456,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceCount", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173614,18 +181487,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceHealth", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/{teamworkDevice-id}/health", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173644,19 +181519,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceHealth", + "OutputType": "IMicrosoftGraphTeamworkDeviceHealth" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceOperation", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceHealth", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173675,19 +181551,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceOperation", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/{teamworkDevice-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173706,18 +181582,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceOperation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkDeviceOperationCount", + "ApiReferenceLink": null, "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkDevice.Read.All", @@ -173736,19 +181614,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkDeviceOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkTeamAppSetting", + "ApiReferenceLink": null, "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkAppSettings.Read.All", @@ -173767,32 +181645,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkTeamAppSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkTeamTemplate", + "ApiReferenceLink": null, "Uri": "/teamwork/teamTemplates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamTemplates.Read", @@ -173811,18 +181691,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkTeamTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkTeamTemplateCount", + "ApiReferenceLink": null, "Uri": "/teamwork/teamTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamTemplates.Read", @@ -173841,18 +181722,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkTeamTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkTeamTemplateDefinition", + "ApiReferenceLink": null, "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamTemplates.Read", @@ -173871,46 +181754,49 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkTeamTemplateDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTeamworkTeamTemplateDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkWorkforceIntegration", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -173929,19 +181815,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkWorkforceIntegration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkWorkforceIntegration", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -173960,18 +181846,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkWorkforceIntegration", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTeamworkWorkforceIntegrationCount", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -173990,49 +181877,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaTeamworkWorkforceIntegrationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", - "Permissions": [ - { - "Name": "DelegatedAdminRelationship.Read.All", - "Description": "Read Delegated Admin relationships with customers", - "FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DelegatedAdminRelationship.ReadWrite.All", - "Description": "Manage Delegated Admin relationships with customers", - "FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174051,18 +181909,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174081,32 +181940,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], "Module": "Beta.Identity.Partner", - "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174125,18 +181971,34 @@ "IsLeastPrivilege": false } ], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174155,19 +182017,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174186,19 +182049,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174217,18 +182081,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174247,19 +182112,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174278,18 +182144,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174308,19 +182175,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174339,18 +182207,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174369,19 +182238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174400,18 +182270,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174430,19 +182301,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipOperationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174461,19 +182333,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174492,18 +182365,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count", + "Module": "Beta.Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -174522,19 +182396,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipDelegatedAdminRelationshipRequestCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [ + { + "Name": "DelegatedAdminRelationship.Read.All", + "Description": "Read Delegated Admin relationships with customers", + "FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DelegatedAdminRelationship.ReadWrite.All", + "Description": "Manage Delegated Admin relationships with customers", + "FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenant", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -174553,19 +182460,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenant", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenant", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -174584,32 +182491,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -174628,18 +182537,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyComplianceCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -174658,459 +182568,493 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantAggregatedPolicyComplianceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/{managedTenantApiNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/{managedTenantApiNotification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertApiNotificationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/apiNotifications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/{managedTenantEmailNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/{managedTenantEmailNotification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertEmailNotificationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}/emailNotifications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}/alert", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}/alert", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertLogCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/{managedTenantAlert-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/{managedTenantAlert-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleAlertCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}/alerts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/{managedTenantAlertRule-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/{managedTenantAlertRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionAlertRuleCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}/alertRules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAlertRuleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}/alert", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}/alert", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantApiNotificationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAppPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175129,45 +183073,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "Uri": "/tenantRelationships/managedTenants/auditEvents", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEvent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/auditEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "Uri": "/tenantRelationships/managedTenants/auditEvents/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantAuditEventCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/auditEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175186,19 +183133,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcConnections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175217,18 +183164,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnectionCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175247,18 +183195,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcConnectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175277,19 +183227,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175308,18 +183258,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDeviceCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175338,18 +183289,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175368,19 +183321,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175399,18 +183352,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverview", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverviewCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -175429,18 +183383,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCloudPcOverviewCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "Policy.Read.All", @@ -175467,19 +183423,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "Policy.Read.All", @@ -175506,18 +183462,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverageCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "Policy.Read.All", @@ -175544,18 +183501,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverageCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175574,58 +183532,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummaryCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175644,19 +183607,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175675,18 +183638,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformationCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175705,18 +183669,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantCustomizedInformationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175735,19 +183701,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175766,18 +183732,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformation", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformationCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -175796,58 +183763,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDetailedInformationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceAppPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -175866,19 +183838,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -175897,18 +183869,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummaryCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -175927,112 +183900,121 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummaryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantDeviceHealthStatusCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", - "Permissions": [], "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}/alert", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotificationAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}/alert", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantEmailNotificationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantGroups/{tenantGroup-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176051,19 +184033,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176082,18 +184064,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantGroupCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176112,49 +184095,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantGroupCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read devices Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -176173,18 +184127,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/$count", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -176203,18 +184158,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -176233,19 +184189,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -176264,18 +184221,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/$count", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -176294,49 +184252,51 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrendCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", + "Module": "Beta.ManagedTenants", "Permissions": [ { - "Name": "ManagedTenants.Read.All", - "Description": "Read all managed tenant information", - "FullDescription": "Allows the app to read all managed tenant information on your behalf.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read devices Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": true }, { - "Name": "ManagedTenants.ReadWrite.All", - "Description": "Read and write all managed tenant information", - "FullDescription": "Allows the app to read and write all managed tenant information on your behalf.", + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementAction", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActions", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176355,18 +184315,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementAction", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActions/$count", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176385,18 +184346,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176415,19 +184377,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176446,18 +184409,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/$count", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176476,18 +184440,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatusCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176506,19 +184471,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementIntents", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176537,18 +184503,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementIntents/$count", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176567,18 +184534,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementIntentCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176597,19 +184565,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/managedTenants/managementTemplates", + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176628,144 +184597,185 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [ + { + "Name": "ManagedTenants.Read.All", + "Description": "Read all managed tenant information", + "FullDescription": "Allows the app to read all managed tenant information on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "ManagedTenants.ReadWrite.All", + "Description": "Read and write all managed tenant information", + "FullDescription": "Allows the app to read and write all managed tenant information on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates/{managementTemplate-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates/{managementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionManagementTemplateCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}/managementTemplates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummaryCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/managementTemplates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -176784,273 +184794,292 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/acceptedVersion", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepAcceptedVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/acceptedVersion", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}/managementTemplateSteps/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}/managementTemplateSteps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/managementTemplate", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/managementTemplate", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummaryCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/acceptedFor", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionAcceptedFor", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/acceptedFor", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/versions/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeploymentCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}/templateStepVersion", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeploymentTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}/templateStepVersion", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/templateStep", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/templateStep", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRole", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsMyRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRole", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/myRoles", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -177069,18 +185098,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRole", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsMyRole", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRoleCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/myRoles/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -177099,18 +185129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantMyRoleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -177129,19 +185161,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantTags", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -177160,18 +185192,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantTag", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantTagCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantTags/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -177190,58 +185223,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantTagCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/$count", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipManagedTenantTicketingEndpointCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177260,19 +185298,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177291,18 +185329,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareStateCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177321,18 +185360,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareStateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/{windowsProtectionState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177351,19 +185392,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177382,18 +185423,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionStateCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.ManagedTenants", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -177412,18 +185454,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.ManagedTenants", - "Command": "Get-MgBetaTenantRelationshipManagedTenantWindowsProtectionStateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganization", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -177450,18 +185493,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganization", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationJoinRequest", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.Read.All", @@ -177480,32 +185524,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationJoinRequest", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/tenants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -177532,18 +185578,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenantCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/tenants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -177570,31 +185617,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTenantRelationshipMultiTenantOrganizationTenantCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/trustFramework", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaTrustFramework", + "ApiReferenceLink": null, + "Uri": "/trustFramework", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFramework", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFramework" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkKeySet", + "ApiReferenceLink": null, "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -177613,19 +185663,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkKeySet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkKeySet", + "ApiReferenceLink": null, "Uri": "/trustFramework/keySets", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -177644,18 +185694,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkKeySet", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkKeySetActiveKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-getactivekey?view=graph-rest-beta", "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/getActiveKey", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -177674,19 +185726,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkKeySetActiveKey", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-getactivekey?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkKeySetCount", + "ApiReferenceLink": null, "Uri": "/trustFramework/keySets/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "TrustFrameworkKeySet.Read.All", @@ -177705,18 +185757,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkKeySetCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkPolicy", + "ApiReferenceLink": null, "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -177735,19 +185789,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkPolicy", + "ApiReferenceLink": null, "Uri": "/trustFramework/policies", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -177766,18 +185820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTrustFrameworkPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkPolicyContent", + "ApiReferenceLink": null, "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -177796,19 +185852,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkPolicyContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaTrustFrameworkPolicyCount", + "ApiReferenceLink": null, "Uri": "/trustFramework/policies/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -177827,18 +185883,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaTrustFrameworkPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-get?view=graph-rest-beta", "Uri": "/users/{user-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -177961,19 +186019,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUser", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-get?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-list?view=graph-rest-beta", "Uri": "/users", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -178080,155 +186138,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUser", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-list?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityHistoryItemCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityStatistics", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "Uri": "/users/{user-id}/analytics/activityStatistics", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserActivityStatistics", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "Uri": "/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAgreementAcceptance", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/agreementAcceptances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AgreementAcceptance.Read", @@ -178247,18 +186316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaUserAgreementAcceptance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAgreementAcceptanceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/agreementAcceptances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AgreementAcceptance.Read", @@ -178277,47 +186348,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Get-MgBetaUserAgreementAcceptanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/analytics/activityStatistics/$count", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAnalyticActivityStatisticsCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/appRoleAssignedResources/{servicePrincipal-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignedResources/{servicePrincipal-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAppRoleAssignedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignedResources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -178336,18 +186409,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserAppRoleAssignedResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAppRoleAssignedResourceByAppId", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignedResources(appId='{appId}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -178366,19 +186441,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserAppRoleAssignedResourceByAppId", + "OutputType": "IMicrosoftGraphServicePrincipal" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAppRoleAssignedResourceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignedResources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/appRoleAssignedResources/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -178397,33 +186473,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserAppRoleAssignedResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -178442,18 +186519,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaUserAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignments/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -178472,66 +186551,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Get-MgBetaUserAppRoleAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", - "Permissions": [ - { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite.All", - "Description": "Read and write all users' authentication methods", - "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.ReadWrite", - "Description": "Read and write your authentication methods", - "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/emailMethods", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178566,18 +186599,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/emailMethods/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178612,19 +186646,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationEmailMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/emailMethods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178659,19 +186694,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178706,18 +186742,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178752,24 +186789,25 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationFido2MethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": true @@ -178791,27 +186829,28 @@ "IsLeastPrivilege": false }, { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/methods", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -178846,18 +186885,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/methods/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -178892,24 +186932,25 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": true @@ -178931,27 +186972,28 @@ "IsLeastPrivilege": false }, { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -178986,18 +187028,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/$count", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179032,33 +187075,83 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [ + { + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite.All", + "Description": "Read and write all users' authentication methods", + "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.ReadWrite", + "Description": "Read and write your authentication methods", + "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationMicrosoftAuthenticatorMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationOperation", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179093,46 +187186,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179167,19 +187263,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179214,18 +187310,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPasswordlessMicrosoftAuthenticatorAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179260,33 +187358,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179321,19 +187421,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179368,18 +187468,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPasswordMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179414,19 +187516,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPasswordMethodCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179461,19 +187564,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPhoneMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179508,18 +187611,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPhoneMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationPhoneMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/phoneMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -179554,88 +187659,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationPhoneMethodCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/platformCredentialMethods", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/platformCredentialMethods", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlatformCredentialAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/platformCredentialMethods/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/platformCredentialMethods/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationPlatformCredentialMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/authentication/signInPreferences", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationSignInPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/signInPreferences", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignInPreferences", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSignInPreferences" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179670,19 +187781,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/softwareOathMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179717,18 +187828,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/softwareOathMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179763,19 +187876,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationSoftwareOathMethodCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179810,19 +187924,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179857,18 +187971,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179903,19 +188019,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationTemporaryAccessPassMethodCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179950,19 +188067,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -179997,18 +188114,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -180043,61 +188162,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethodCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserAuthenticationWindowsHelloForBusinessMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/getByIds", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaUserById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta", + "Uri": "/users/getByIds", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCalendar", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180132,18 +188254,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendar", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCalendarCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180178,19 +188302,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCalendarEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "beta", + "Variants": [ + "List1" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180217,18 +188341,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarEvent", - "Variants": [ - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCalendarEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/calendar/events/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Calendars.Read", @@ -180255,21 +188383,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserCalendarEventDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserCalendarGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180288,19 +188415,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendarGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserCalendarGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180327,18 +188454,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendarGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserCalendarGroupCalendar", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180373,18 +188501,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarGroupCalendar", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCalendarGroupCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180411,81 +188541,86 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCalendarPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaUserCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", + "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", + "ApiVersion": "beta", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduleInformation" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserCalendarView", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendar/calendarView", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -180512,19 +188647,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserCalendarView", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -180607,19 +188743,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -180662,18 +188798,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChat", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -180716,102 +188854,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMember", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -180910,19 +189055,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMember", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -181021,18 +189166,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMember", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMemberCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -181131,19 +189278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181202,19 +189350,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181257,18 +189405,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessageCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181311,19 +189461,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/chats/{chat-id}/messages/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Chat.Read", @@ -181382,19 +189533,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserChatMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181453,21 +189607,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181526,18 +189678,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Read", @@ -181596,242 +189750,259 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserChatMessageHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPermissionGrantCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatPinnedMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserChatRetainedMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta", "Uri": "/users/{user-id}/chats/getAllRetainedMessages", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Chat.Read.All", @@ -181850,102 +190021,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserChatRetainedMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-getallretainedmessages?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/$count", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatTabCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserChatTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getCloudPcConnectivityHistory", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCloudPcConnectivityHistory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getCloudPcConnectivityHistory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpcconnectivityhistory?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcConnectivityEvent" }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCloudPcFrontlineCloudPcAccessState", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getFrontlineCloudPcAccessState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getfrontlinecloudpcaccessstate?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCloudPcLaunchInfo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta", "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getCloudPcLaunchInfo", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -181964,19 +190142,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserCloudPcLaunchInfo", + "OutputType": "IMicrosoftGraphCloudPcLaunchInfo" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCloudPcProvisionedCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/getProvisionedCloudPCs(groupId='{groupId}',servicePlanId='{servicePlanId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcLaunchInfo", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getcloudpclaunchinfo?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/cloudPCs/getProvisionedCloudPCs(groupId='{groupId}',servicePlanId='{servicePlanId}')", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -181995,19 +190174,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserCloudPcProvisionedCloudPc", + "OutputType": "IMicrosoftGraphCloudPc" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCloudPcShiftWorkCloudPcAccessState", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getprovisionedcloudpcs?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getShiftWorkCloudPcAccessState", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -182026,33 +190206,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserCloudPcShiftWorkCloudPcAccessState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getshiftworkcloudpcaccessstate?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getSupportedCloudPcRemoteActions", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCloudPcSupportedCloudPcRemoteAction", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/getSupportedCloudPcRemoteActions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-getsupportedcloudpcremoteactions?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionCapability" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182071,19 +190253,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182102,18 +190284,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182132,19 +190316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/contacts/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -182163,60 +190348,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182235,19 +190424,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182266,32 +190455,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolder", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182310,18 +190501,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderChildFolder", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182340,19 +190533,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderChildFolderContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182371,18 +190564,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderChildFolderContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolderContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182401,19 +190596,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderChildFolderContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolderContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -182432,88 +190628,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserContactFolderChildFolderContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderChildFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182532,33 +190734,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderChildFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderChildFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182577,19 +190781,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182608,18 +190812,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderContact", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182638,19 +190844,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -182669,88 +190876,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserContactFolderContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -182769,19 +190982,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.PersonalContacts", - "Command": "Get-MgBetaUserContactFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserContactFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/contactFolders/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -182800,47 +191014,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserContactFolderDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCount", + "ApiReferenceLink": null, "Uri": "/users/$count", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -182947,32 +191163,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserCount", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCreatedObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCreatedObject", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/createdObjects", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -183023,45 +191241,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserCreatedObject", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/createdObjects/servicePrincipal", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserCreatedObjectCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/createdObjects/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -183112,47 +191334,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserCreatedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/createdObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserCreatedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserDefaultCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDefaultCalendarEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendar/events", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -183179,18 +191403,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserDefaultCalendarEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserDefaultCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta", "Uri": "/users/{user-id}/calendar/getSchedule", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -183217,21 +191445,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserDefaultCalendarSchedule", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphScheduleInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDefaultDrive", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drive", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -183282,19 +191509,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaUserDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-beta", "Uri": "/users/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -183329,933 +191556,1001 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/devices/{device-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceByDeviceId", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceCommandCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}/responsepayload", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceCommandResponsepayload", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}/responsepayload", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/devices/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceEnrollmentConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceManagementTroubleshootingEventCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/group", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwner", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/endpoint", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/servicePrincipal", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/user", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/endpoint/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/user/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/endpoint", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/servicePrincipal", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/user", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/endpoint/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/user/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceRegisteredUserCountAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights/$count", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDeviceUsageRightsCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDirectReport", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/directReports", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -184298,72 +192593,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserDirectReport", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}/orgContact", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/users/{user-id}/directReports/orgContact", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/orgContact", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}/user", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}/user", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/directReports/user", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/user", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDirectReportCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/directReports/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -184406,61 +192707,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserDirectReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/orgContact/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/orgContact/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/user/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDirectReportCountAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/user/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDrive", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drives", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -184511,155 +192815,167 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaUserDrive", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserDriveCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drives/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -184710,2818 +193026,3021 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Get-MgBetaUserDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", - "Permissions": [], "Module": "Beta.Files", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemChildCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/drive", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivity-getbyinterval?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/activities", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/activities", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval(startDateTime='{startDateTime}',endDateTime='{endDateTime}',interval='{interval}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/getEffectiveDeviceEnrollmentConfigurations", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEffectiveDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/getEffectiveDeviceEnrollmentConfigurations", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -187540,19 +196059,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -187579,73 +196098,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserEvent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserEventCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -187672,19 +196197,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserEventCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/events/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Calendars.Read", @@ -187711,348 +196237,372 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExceptionOccurrenceInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserEventInstance", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -188071,73 +196621,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserEventInstance", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserEventInstanceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}/instances/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -188156,266 +196712,284 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Get-MgBetaUserEventInstanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/calendar", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExceptionOccurrenceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserEventInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/followedSites/{site-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserFollowedSite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/followedSites/{site-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserFollowedSite", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/followedSites", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -188434,18 +197008,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaUserFollowedSite", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserFollowedSiteCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/followedSites/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -188464,198 +197040,212 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Get-MgBetaUserFollowedSiteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserInferenceClassification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInferenceClassificationOverrideCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/users/{user-id}/informationProtection/bitlocker", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlocker", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/bitlocker", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlocker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlocker" }, { - "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { - "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionBitlockerRecoveryKeyCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/bitlocker/recoveryKeys/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionDataLossPreventionPolicyCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -188674,19 +197264,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/informationProtection/policy/labels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -188705,18 +197295,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserInformationProtectionPolicyLabel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInformationProtectionPolicyLabelCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/informationProtection/policy/labels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -188735,225 +197327,240 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Get-MgBetaUserInformationProtectionPolicyLabelCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityLabelSublabelCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInformationProtectionThreatAssessmentRequestResultCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemInsights", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemInsights" }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsightShared", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightShared", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/shared", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -188972,18 +197579,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightShared", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightSharedCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/shared/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189002,61 +197611,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightSharedCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsightSharedLastSharedMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsightSharedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/trending/{trending-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsightTrending", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending/{trending-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrending", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrending" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightTrending", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/trending", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189075,18 +197687,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightTrending", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrending", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTrending" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightTrendingCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/trending/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189105,19 +197719,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightTrendingCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightTrendingResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource", + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189136,33 +197751,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightTrendingResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInsightUsed", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightUsed", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/used", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189181,18 +197797,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightUsed", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUsedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightUsedCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/used/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189211,19 +197829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightUsedCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserInsightUsedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource", + "Module": "Beta.Users", "Permissions": [ { "Name": "Sites.Read.All", @@ -189242,46 +197861,48 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserInsightUsedResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/invitedBy", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserInvitedBy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/invitedBy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/joinedGroups", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserJoinedGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/joinedGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserJoinedTeam", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/joinedTeams", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -189340,32 +197961,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserJoinedTeam", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserLicenseDetail", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/licenseDetails", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -189408,18 +198031,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserLicenseDetail", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLicenseDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserLicenseDetailCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/licenseDetails/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -189462,19 +198087,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserLicenseDetailCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserLicenseDetailTeamLicensingDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta", + "Uri": "/users/{user-id}/licenseDetails/getTeamsLicensingDetails", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/licenseDetails/getTeamsLicensingDetails", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read", @@ -189509,33 +198135,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserLicenseDetailTeamLicensingDetail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsLicensingDetails", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTeamsLicensingDetails" }, { - "Uri": "/users/{user-id}/getLoggedOnManagedDevices", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserLoggedOnManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/getLoggedOnManagedDevices", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailboxSetting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailboxSettings", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "MailboxSettings.Read", @@ -189554,19 +198182,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMailboxSetting", + "OutputType": "IMicrosoftGraphMailboxSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -189601,19 +198230,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -189648,32 +198277,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolder", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -189708,18 +198339,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderChildFolder", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderChildFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -189754,307 +198387,329 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderChildFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageMentionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderMessageRuleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations/{userConfiguration-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderUserConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations/{userConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderUserConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderChildFolderUserConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/userConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -190089,19 +198744,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/mailFolders/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -190136,19 +198792,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserMailFolderDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.Read", @@ -190175,19 +198832,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -190222,59 +198879,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderMessageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.Read", @@ -190301,19 +198963,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderMessageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/$count", + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -190348,19 +199011,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMailFolderMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMailFolderMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -190395,183 +199059,198 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserMailFolderMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageMentionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderMessageRuleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderUserConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/{userConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserMailFolderUserConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConfiguration" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMailFolderUserConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/userConfigurations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserMailTip", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-beta", "Uri": "/users/{user-id}/getMailTips", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Mail.Read", @@ -190590,21 +199269,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserMailTip", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailTips", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMailTips" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagedAppBlockedUser", + "ApiReferenceLink": null, "Uri": "/users/getManagedAppBlockedUsers", + "ApiVersion": "beta", + "Variants": [ + "Get" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -190639,18 +199316,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserManagedAppBlockedUser", - "Variants": [ - "Get" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagedAppDiagnosticStatus", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/getManagedAppDiagnosticStatuses", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -190669,19 +199348,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserManagedAppDiagnosticStatus", + "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/getManagedAppPolicies", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/getManagedAppPolicies", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -190700,608 +199380,652 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserManagedAppPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/users/{user-id}/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/users/{user-id}/managedAppRegistrations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/users/{user-id}/managedAppRegistrations/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedAppRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCloudPcRemoteActionResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getCloudPcRemoteActionResults", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcremoteactionresults?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcReviewStatus", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-getcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcReviewStatus" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCompliancePolicyStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDetectedApp" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceDetectedAppCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/detectedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getFileVaultKey", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceFileVaultKey", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getFileVaultKey", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceHealthScriptStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceMobileAppConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getNonCompliantSettings", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceNonCompliantSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/getNonCompliantSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceSecurityBaselineStateSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagedDeviceWithAppFailure", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/getManagedDevicesWithAppFailures", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -191320,19 +200044,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserManagedDeviceWithAppFailure", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagedDeviceWithFailedApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/getManagedDevicesWithFailedOrPendingApps", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/getManagedDevicesWithFailedOrPendingApps", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -191351,19 +200076,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserManagedDeviceWithFailedApp", + "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManager", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/manager", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/manager", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read.All", @@ -191398,19 +200124,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserManager", + "OutputType": "IMicrosoftGraphDirectoryObject" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserManagerByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/manager/$ref", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read.All", @@ -191445,19 +200172,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserManagerByRef", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta", "Uri": "/users/{user-id}/getMemberGroups", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -191540,21 +200270,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserMemberObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/getMemberObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/getMemberObjects", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -191653,21 +200384,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/{directoryObject-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191686,19 +200416,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOf", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191733,32 +200463,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/administrativeUnit", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191777,32 +200509,34 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfAsAdministrativeUnit", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfAsDirectoryRole", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/directoryRole", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191821,32 +200555,34 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfAsDirectoryRole", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfAsGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/group", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191865,18 +200601,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfAsGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191911,19 +200649,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/administrativeUnit/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191942,19 +200681,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfCountAsAdministrativeUnit", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/directoryRole/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/directoryRole/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -191973,19 +200713,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfCountAsDirectoryRole", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/group/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -192004,19 +200745,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserMemberOfCountAsGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/messages/{message-id}", + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.Read", @@ -192043,19 +200785,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -192090,59 +200832,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMessage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMessageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.Read", @@ -192169,19 +200916,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMessageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/messages/$count", + "Module": "Beta.Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -192216,19 +200964,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Mail", - "Command": "Get-MgBetaUserMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/messages/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Mail.Read", @@ -192255,101 +201004,108 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/messages/{message-id}/mentions/$count", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMessageMentionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/mentions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMobileAppIntentAndState", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -192368,19 +201124,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaUserMobileAppIntentAndState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMobileAppIntentAndState", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mobileAppIntentAndStates", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -192399,18 +201155,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaUserMobileAppIntentAndState", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserMobileAppIntentAndStateCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mobileAppIntentAndStates/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -192429,156 +201187,166 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Get-MgBetaUserMobileAppIntentAndStateCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserMobileAppTroubleshootingEventCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/notifications/{notification-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserNotification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotification" }, { - "Uri": "/users/{user-id}/notifications", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserNotification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotification" }, { - "Uri": "/users/{user-id}/notifications/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserNotificationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOauth2PermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOauth2PermissionGrant", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/oauth2PermissionGrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -192597,18 +201365,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/oauth2PermissionGrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -192627,19 +201397,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOauth2PermissionGrantCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -192682,19 +201453,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -192737,18 +201508,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteNotebookCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -192791,19 +201564,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteNotebookCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta", "Uri": "/users/{user-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -192846,21 +201622,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteNotebookSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -192903,18 +201677,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteNotebookSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -192957,18 +201732,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteNotebookSectionGroup", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteOperation", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193011,33 +201788,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/users/{user-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/operations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193072,19 +201851,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenotePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193119,18 +201898,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenotePage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenotePageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193165,19 +201946,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenotePageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenotePageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/pages/$count", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193212,19 +201994,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenotePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta", + "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Notes.Create", @@ -193267,33 +202050,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserOnenoteRecentNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193328,33 +202113,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193397,19 +202184,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193452,18 +202239,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193506,19 +202295,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193561,19 +202351,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "beta", + "Variants": [ + "List", + "List1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193616,19 +202407,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193671,21 +202465,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -193728,18 +202520,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Read", @@ -193774,18 +202567,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Get-MgBetaUserOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -193820,19 +202615,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeeting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -193867,18 +202662,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeeting", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingAlternativeRecording", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -193921,136 +202718,145 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingAlternativeRecording", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "List", "List1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/broadcastRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingBroadcastRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/broadcastRecording", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194085,19 +202891,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingByJoinWebUrl", + "OutputType": "IMicrosoftGraphOnlineMeeting" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onlineMeetings/$count", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194132,19 +202939,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", + "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/getVirtualAppointmentJoinWebUrl", + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194179,19 +202987,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentJoinWebUrl", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetingArtifact.Read.All", @@ -194234,76 +203045,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingRecording", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRecordingDelta", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingRegistration", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194338,19 +203152,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingRegistration", + "OutputType": "IMicrosoftGraphMeetingRegistration" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194369,60 +203184,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationCustomQuestionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194449,18 +203267,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrant", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrantCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -194487,102 +203307,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserOnlineMeetingRegistrationRegistrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/$count", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptDelta", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "VirtualAppointment.Read", @@ -194633,443 +203460,474 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserOnlineMeetingVirtualAppointmentJoinWebUrl", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/masterCategories", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/masterCategories/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookMasterCategoryCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/tasks/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskFolders", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskFolderTaskCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "Uri": "/users/{user-id}/outlook/taskGroups", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOutlookTaskGroupTaskFolderTaskCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOwnedDevice", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195112,72 +203970,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOwnedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/ownedDevices/device", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/ownedDevices/endpoint", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOwnedDeviceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195220,61 +204084,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOwnedDeviceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/device/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/endpoint/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedDeviceCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOwnedObject", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedObjects", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195317,113 +204184,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOwnedObject", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/application", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/application", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/users/{user-id}/ownedObjects/application", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/application", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/ownedObjects/group", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/ownedObjects/servicePrincipal", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/servicePrincipal", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/getUserOwnedObjects", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgBetaUserOwnedObjectByType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta", + "Uri": "/users/getUserOwnedObjects", + "ApiVersion": "beta", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-getuserownedobjects?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserOwnedObjectCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedObjects/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195466,61 +204342,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserOwnedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/application/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/application/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/group/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserOwnedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/servicePrincipal/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBetaUserPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getpasswordsinglesignoncredentials?view=graph-rest-beta", "Uri": "/users/{user-id}/getPasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -195547,33 +204427,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Get-MgBetaUserPasswordSingleSignOnCredential", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getpasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "Uri": "/users/{user-id}/people/{person-id}", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserPerson", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPerson", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphPerson" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserPerson", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/people", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "People.Read", @@ -195592,18 +204473,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserPerson", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPerson", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPerson" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPersonCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/people/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "People.Read", @@ -195622,19 +204505,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserPersonCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195677,21 +204563,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserPhoto", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photos", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195734,18 +204618,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserPhoto", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPhotoContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -195788,21 +204676,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserPhotoContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlanner", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/planner", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -195845,48 +204734,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlanner", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerUser" }, { - "Uri": "/users/{user-id}/planner/all", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlanner", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/all", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerDelta", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerDelta" }, { - "Uri": "/users/{user-id}/planner/all/$count", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerAllCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/all/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerAllDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planneruser-list-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/planner/all/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Tasks.Read", @@ -195921,33 +204811,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserPlannerAllDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerDelta", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/planneruser-list-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerDelta" }, { - "Uri": "/users/{user-id}/planner/favoritePlans/{plannerPlan-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerFavoritePlan", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/favoritePlans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerFavoritePlan", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/favoritePlans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -195974,18 +204865,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerFavoritePlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerFavoritePlanCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/favoritePlans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196012,33 +204905,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerFavoritePlanCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/planner/myDayTasks/{plannerTask-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerMyDayTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/myDayTasks/{plannerTask-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerMyDayTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/myDayTasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196073,18 +204967,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerMyDayTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerMyDayTaskCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/myDayTasks/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196119,19 +205015,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerMyDayTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerPlan", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/plans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196166,88 +205062,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanBucketDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerbucket-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucket" }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanBucketTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/buckets/{plannerBucket-id}/tasks/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { - "Uri": "/users/{user-id}/planner/plans/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/planner/plans/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/delta", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerPlanTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/tasks/delta", + "ApiVersion": "beta", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { - "Uri": "/users/{user-id}/planner/recentPlans/{plannerPlan-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerRecentPlan", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/recentPlans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerRecentPlan", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/recentPlans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196274,18 +205176,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerRecentPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerRecentPlanCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/recentPlans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196312,33 +205216,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerRecentPlanCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/planner/rosterPlans/{plannerPlan-id}", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserPlannerRosterPlan", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/rosterPlans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerRosterPlan", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/rosterPlans", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196373,18 +205278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerRosterPlan", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerRosterPlanCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/rosterPlans/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196419,19 +205326,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerRosterPlanCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -196482,18 +205389,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Get-MgBetaUserPlannerTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPlannerTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta", "Uri": "/users/{user-id}/planner/tasks/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Tasks.Read", @@ -196512,19 +205421,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserPlannerTaskDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannertask-delta?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserPresence", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -196551,74 +205461,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Get-MgBetaUserPresence", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/users/{user-id}/profile", - "Permissions": [ - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadBasic.All", - "Description": "Read all users' basic profiles", - "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfile", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -196661,128 +205517,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAccount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfile" }, { - "Uri": "/users/{user-id}/profile/account", - "Permissions": [ - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadBasic.All", - "Description": "Read all users' basic profiles", - "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileAccount", - "Variants": [ - "List" - ], + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/account/$count", - "Permissions": [ - { - "Name": "User.Read", - "Description": "Sign you in and read your profile", - "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "User.ReadWrite.All", - "Description": "Read and write all users' full profiles", - "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadBasic.All", - "Description": "Read all users' basic profiles", - "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.Read.All", - "Description": "Read all users' full profiles", - "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "User.ReadWrite", - "Description": "Read and update your profile", - "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAccountCount", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -196825,19 +205573,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAddress", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "Uri": "/users/{user-id}/profile/addresses", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/account", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -196880,18 +205628,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAddress", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserAccountInformation" }, { - "Uri": "/users/{user-id}/profile/addresses/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAccountCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/account/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -196934,19 +205684,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAddressCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAddress", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -196989,19 +205740,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAnniversary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAddress" }, { - "Uri": "/users/{user-id}/profile/anniversaries", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAddress", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197044,18 +205795,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAnniversary", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAddress" }, { - "Uri": "/users/{user-id}/profile/anniversaries/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAddressCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197098,19 +205851,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAnniversaryCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAnniversary", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197153,19 +205907,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAward", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "Uri": "/users/{user-id}/profile/awards", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAnniversary", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197208,18 +205962,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAward", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAnnualEvent" }, { - "Uri": "/users/{user-id}/profile/awards/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAnniversaryCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197262,19 +206018,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileAwardCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAward", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197317,19 +206074,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileCertification", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAward" }, { - "Uri": "/users/{user-id}/profile/certifications", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAward", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197372,18 +206129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileCertification", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAward" }, { - "Uri": "/users/{user-id}/profile/certifications/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileAwardCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197426,19 +206185,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileCertificationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileCertification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197481,19 +206241,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEducationalActivity", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonCertification" }, { - "Uri": "/users/{user-id}/profile/educationalActivities", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileCertification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197536,18 +206296,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEducationalActivity", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonCertification" }, { - "Uri": "/users/{user-id}/profile/educationalActivities/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileCertificationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197590,19 +206352,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEducationalActivityCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEducationalActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197645,19 +206408,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEmail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "Uri": "/users/{user-id}/profile/emails", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEducationalActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197700,18 +206463,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEmail", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationalActivity" }, { - "Uri": "/users/{user-id}/profile/emails/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEducationalActivityCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197754,19 +206519,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileEmailCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEmail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197809,19 +206575,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileInterest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemEmail" }, { - "Uri": "/users/{user-id}/profile/interests", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEmail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197864,18 +206630,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileInterest", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemEmail" }, { - "Uri": "/users/{user-id}/profile/interests/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileEmailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197918,19 +206686,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileInterestCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileInterest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -197973,19 +206742,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileLanguage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonInterest" }, { - "Uri": "/users/{user-id}/profile/languages", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileInterest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198028,18 +206797,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileLanguage", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonInterest" }, { - "Uri": "/users/{user-id}/profile/languages/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileInterestCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198082,19 +206853,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileLanguageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileLanguage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/names/{personName-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198137,19 +206909,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "Uri": "/users/{user-id}/profile/names", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileLanguage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198192,18 +206964,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileName", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLanguageProficiency" }, { - "Uri": "/users/{user-id}/profile/names/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileLanguageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198246,19 +207020,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileNameCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198301,19 +207076,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileNote", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonName" }, { - "Uri": "/users/{user-id}/profile/notes", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198356,18 +207131,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileNote", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonName" }, { - "Uri": "/users/{user-id}/profile/notes/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileNameCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198410,19 +207187,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileNoteCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileNote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198465,19 +207243,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePatent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "Uri": "/users/{user-id}/profile/patents", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileNote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198520,18 +207298,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePatent", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonAnnotation" }, { - "Uri": "/users/{user-id}/profile/patents/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileNoteCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198574,19 +207354,75 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePatentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePatent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [ + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadBasic.All", + "Description": "Read all users' basic profiles", + "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphItemPatent" }, { - "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePatent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198629,19 +207465,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePhone", + "OutputType": "IMicrosoftGraphItemPatent" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePatentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/phones", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198684,18 +207521,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfilePhone", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/phones/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198738,19 +207577,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePhoneCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemPhone" }, { - "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePhone", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198793,19 +207632,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePosition", + "OutputType": "IMicrosoftGraphItemPhone" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePhoneCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/positions", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198848,18 +207688,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfilePosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/positions/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198902,19 +207744,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePositionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWorkPosition" }, { - "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -198957,19 +207799,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileProject", + "OutputType": "IMicrosoftGraphWorkPosition" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePositionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/projects", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199012,18 +207855,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileProject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/projects/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199066,19 +207911,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileProjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProjectParticipation" }, { - "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileProject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199121,19 +207966,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePublication", + "OutputType": "IMicrosoftGraphProjectParticipation" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileProjectCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/publications", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199176,18 +208022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfilePublication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/publications/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199230,19 +208078,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfilePublicationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemPublication" }, { - "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePublication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199285,19 +208133,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Get-MgBetaUserProfileSkill", + "OutputType": "IMicrosoftGraphItemPublication" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfilePublicationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/skills", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199340,18 +208189,75 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileSkill", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Variants": [ - "List" + "Get", + "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [ + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadBasic.All", + "Description": "Read all users' basic profiles", + "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphSkillProficiency" }, { - "Uri": "/users/{user-id}/profile/skills/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserProfileSkill", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199394,19 +208300,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": "IMicrosoftGraphSkillProficiency" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileSkillCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199449,19 +208356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199504,18 +208412,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": "IMicrosoftGraphWebAccount" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199558,19 +208467,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": "IMicrosoftGraphWebAccount" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebAccountCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199613,19 +208523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebsite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199668,18 +208579,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": "IMicrosoftGraphPersonWebsite" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebsite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites/$count", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -199722,33 +208634,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", + "OutputType": "IMicrosoftGraphPersonWebsite" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserProfileWebsiteCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [ + { + "Name": "User.Read", + "Description": "Sign you in and read your profile", + "FullDescription": "Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "User.ReadWrite.All", + "Description": "Read and write all users' full profiles", + "FullDescription": "Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadBasic.All", + "Description": "Read all users' basic profiles", + "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.Read.All", + "Description": "Read all users' full profiles", + "FullDescription": "Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "User.ReadWrite", + "Description": "Read and update your profile", + "FullDescription": "Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserRegisteredDevice", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/registeredDevices", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -199791,72 +208760,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserRegisteredDevice", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/device", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/device", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/registeredDevices/device", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/device", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/endpoint", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/registeredDevices/endpoint", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/endpoint", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserRegisteredDeviceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/registeredDevices/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -199899,61 +208874,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserRegisteredDeviceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/device/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/device/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/endpoint/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserRegisteredDeviceCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/endpoint/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserScopedRoleMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -199972,18 +208950,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaUserScopedRoleMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserScopedRoleMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/scopedRoleMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -200002,47 +208982,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Get-MgBetaUserScopedRoleMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/security", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSecurity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurity1", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurity1" }, { - "Uri": "/users/{user-id}/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -200061,19 +209044,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaUserSecurityInformationProtectionLabelPolicySetting", + "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -200092,19 +209076,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -200123,18 +209107,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabel", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabelCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -200153,33 +209139,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabelCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSetting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read.All", @@ -200198,19 +209186,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSetting", + "OutputType": "IMicrosoftGraphUserSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingContactMergeSuggestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/contactMergeSuggestions", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings/contactMergeSuggestions", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -200229,19 +209218,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingContactMergeSuggestion", + "OutputType": "IMicrosoftGraphContactMergeSuggestions" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactMergeSuggestions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings/itemInsights", + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -200260,33 +209250,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingItemInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInsightsSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserInsightsSettings" }, { - "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingRegionalAndLanguageSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingShiftPreference", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read.All", @@ -200321,33 +209313,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingShiftPreference", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftPreferences", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "Uri": "/users/{user-id}/settings/storage", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingStorage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserStorage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserStorage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingStorageQuota", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings/storage/quota", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Files.Read", @@ -200382,19 +209376,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingStorageQuota", + "OutputType": "IMicrosoftGraphUnifiedStorageQuota" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingStorageQuotaService", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedStorageQuota", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Files.Read", @@ -200429,19 +209424,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingStorageQuotaService", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingStorageQuotaService", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings/storage/quota/services", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Files.Read", @@ -200476,18 +209471,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingStorageQuotaService", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSettingStorageQuotaServiceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings/storage/quota/services/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Files.Read", @@ -200522,115 +209519,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSettingStorageQuotaServiceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSettingWindowsInstanceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/sponsors/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserSponsor", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/sponsors/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSponsor", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/sponsors", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -200657,18 +209661,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserSponsorCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/sponsors/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -200695,19 +209701,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserSponsorCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/teamwork", + "Module": "Beta.Teams", "Permissions": [ { "Name": "UserTeamwork.Read", @@ -200726,35 +209733,36 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamwork", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserTeamwork", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/associatedTeams", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -200781,18 +209789,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkAssociatedTeam", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkAssociatedTeamCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/associatedTeams/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -200819,19 +209829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkAssociatedTeamCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -200946,19 +209957,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -201073,18 +210084,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkInstalledAppChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -201151,19 +210164,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkInstalledAppChat", + "OutputType": "IMicrosoftGraphChat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTeamworkInstalledAppCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/teamwork/installedApps/$count", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -201278,47 +210292,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Get-MgBetaUserTeamworkInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsApp", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTeamworkInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201353,19 +210370,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTaskList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201400,18 +210417,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoList", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTaskList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoListCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201446,19 +210465,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoListCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoListDelta", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -201485,60 +210505,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserTodoListDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoListExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201573,19 +210597,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201620,18 +210644,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTask", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTask" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskAttachment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201666,19 +210692,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskAttachment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachmentBase" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskAttachment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201713,18 +210739,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachmentBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskAttachmentContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201759,19 +210787,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskAttachmentContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201806,74 +210835,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskAttachmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSessionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskAttachmentSessionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201908,19 +210942,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskChecklistItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChecklistItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -201955,18 +210989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskChecklistItem", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChecklistItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskChecklistItemCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -202001,19 +211037,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskChecklistItemCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/$count", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -202048,19 +211085,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskDelta", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/delta", + "ApiVersion": "beta", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Tasks.Read", @@ -202095,60 +211133,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Get-MgBetaUserTodoTaskDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTask" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTodoTaskExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -202183,19 +211225,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskLinkedResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -202230,18 +211272,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskLinkedResource", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTodoTaskLinkedResourceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -202276,33 +211320,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTodoTaskLinkedResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/transitiveMemberOf", + "ApiVersion": "beta", + "Variants": [ + "List" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -202353,99 +211398,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/group", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBetaUserTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/transitiveMemberOf/$count", + "ApiVersion": "beta", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.Read", @@ -202496,2344 +211549,2515 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Get-MgBetaUserTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/group/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveReports/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveReports/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/transitiveReports", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/transitiveReports/$count", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserTransitiveReportCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { - "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" }, { - "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/$count", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaUserWindowsInformationProtectionDeviceRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/windowsInformationProtectionDeviceRegistrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Get1", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventPresenterSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventSessionRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/registrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhall", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhall", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='{userId}',role='{role}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallByUserIdAndRole", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='{userId}',role='{role}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls/getByUserRole(role='{role}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallByUserRole", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/getByUserRole(role='{role}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallPresenterSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventTownhallSessionRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/registrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarByUserIdAndRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-beta", + "Uri": "/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-beta" + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/getByUserRole(role='{role}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarByUserRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-beta", + "Uri": "/solutions/virtualEvents/webinars/getByUserRole(role='{role}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-beta" + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarPresenterSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrationConfiguration", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationConfiguration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrationConfiguration", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinarRegistrationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinarRegistrationConfiguration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarRegistrationSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionPresenterCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/presenters/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations/$count", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBetaVirtualEventWebinarSessionRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/registrations/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/catalog/entries/{catalogEntry-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuCatalogEntry", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/catalog/entries/{catalogEntry-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/catalog/entries", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuCatalogEntry", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/catalog/entries", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/catalog/entries/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuCatalogEntryCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesCatalogEntryCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/catalog/entries/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeployment", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeployment", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment" }, { - "Uri": "/admin/windows/updates/deployments", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeployment", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeployment", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContent", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContent", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContentCatalogEntry", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContentCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContentMatchedDevice", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContentMatchedDevice", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceApplicableContentMatchedDeviceCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDeviceCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceExclusion", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceExclusion", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceExclusionCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceExclusionCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceMember", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceMember", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentAudienceMemberCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentAudienceMemberCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuDeploymentCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesDeploymentCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicy", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy" }, { - "Uri": "/admin/windows/updates/updatePolicies", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicy", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudience", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudience", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeploymentAudience", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeploymentAudience" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContent", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContent", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContentCatalogEntry", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContentCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/catalogEntry", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContentCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContentCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContentMatchedDevice", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContentMatchedDevice", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceApplicableContentMatchedDeviceCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDeviceCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceExclusion", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceExclusion", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceExclusionCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceExclusionCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceMember", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceMember", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyAudienceMemberCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyAudienceMemberCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyComplianceChange", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyComplianceChange", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyComplianceChange", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyComplianceChange", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyComplianceChangeCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyComplianceChangeCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}/updatePolicy", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyComplianceChangeUpdatePolicy", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyComplianceChangeUpdatePolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}/updatePolicy", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy" }, { - "Uri": "/admin/windows/updates/updatePolicies/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuPolicyCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesPolicyCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProduct", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProduct", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/admin/windows/updates/products", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProduct", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProduct", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/admin/windows/updates/products/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductEdition", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductEdition", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesEdition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesEdition" }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductEdition", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductEdition", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesEdition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesEdition" }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductEditionCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductEditionCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssue", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssue", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssue", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssue", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue" }, { - "Uri": "/admin/windows/updates/products/{product-id}/getKnownIssuesByTimeRange(daysInPast={daysInPast},includeAllActive=@includeAllActive)", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssueGraphBPreTimeRange", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssueByTimeRange", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-product-getknownissuesbytimerange?view=graph-rest-beta", + "Uri": "/admin/windows/updates/products/{product-id}/getKnownIssuesByTimeRange(daysInPast={daysInPast},includeAllActive=@includeAllActive)", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-product-getknownissuesbytimerange?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssueCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssueCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssueOriginatingKnowledgeBaseArticle", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssueOriginatingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductKnownIssueResolvingKnowledgeBaseArticle", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductKnownIssueResolvingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductRevision", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductRevision", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductRevision", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductRevision", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductRevisionCatalogEntry", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductRevisionCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductRevisionCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductRevisionCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/$count", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuProductRevisionKnowledgeBaseArticle", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesProductRevisionKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuResourceConnection", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesResourceConnection", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection" }, { - "Uri": "/admin/windows/updates/resourceConnections", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuResourceConnection", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesResourceConnection", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection" }, { - "Uri": "/admin/windows/updates/resourceConnections/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuResourceConnectionCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesResourceConnectionCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuUpdatableAsset", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuUpdatableAsset", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets", + "ApiVersion": "beta", "Variants": [ "List" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatableAsset" }, { - "Uri": "/admin/windows/updates/updatableAssets/$count", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Get-MgBetaWuUpdatableAssetCount", + "Method": "GET", "Command": "Get-MgBetaWindowsUpdatesUpdatableAssetCount", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/$count", + "ApiVersion": "beta", "Variants": [ "Get" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusiness", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -204868,19 +214092,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusiness", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusiness", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -204915,18 +214139,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusiness", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -204961,19 +214187,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessAppointment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205008,18 +214234,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessAppointment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessAppointmentCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205054,33 +214282,34 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessAppointmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCalendarView", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205115,18 +214344,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCalendarView", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingAppointment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCalendarViewCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205161,19 +214392,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCalendarViewCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205208,18 +214439,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomer", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomerBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205254,19 +214487,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomer", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomer", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205301,18 +214534,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomer", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCustomerBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomerBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomerCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205347,19 +214582,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomerCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205394,19 +214630,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomQuestion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomQuestion", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205441,18 +214677,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomQuestion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCustomQuestion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessCustomQuestionCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205487,19 +214725,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessCustomQuestionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205534,19 +214773,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessService", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessService", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205581,18 +214820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessService", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessServiceCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205627,19 +214868,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessServiceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgBookingBusinessStaffAvailability", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0", "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/getStaffAvailability", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205682,21 +214926,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessStaffAvailability", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStaffAvailabilityItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-getstaffavailability?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphStaffAvailabilityItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessStaffMember", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMemberBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205731,19 +214974,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessStaffMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessStaffMember", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205778,18 +215021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessStaffMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingStaffMemberBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingStaffMemberBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingBusinessStaffMemberCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -205824,19 +215069,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingBusinessStaffMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205871,19 +215117,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingCurrency", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCurrency" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingCurrency", + "ApiReferenceLink": null, "Uri": "/solutions/bookingCurrencies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205918,18 +215164,19 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingCurrency", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingCurrency" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgBookingCurrencyCount", + "ApiReferenceLink": null, "Uri": "/solutions/bookingCurrencies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.Read.All", @@ -205964,18 +215211,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Get-MgBookingCurrencyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-1.0", "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206042,19 +215291,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-1.0", "Uri": "/chats", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206105,18 +215354,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChat", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatCount", + "ApiReferenceLink": null, "Uri": "/chats/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206167,18 +215417,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -206261,19 +215513,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -206388,18 +215640,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatInstalledAppCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -206514,61 +215768,65 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206699,19 +215957,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206810,18 +216068,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMemberCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -206920,19 +216180,21 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", + "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -206983,20 +216245,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessage", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207039,18 +216300,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessageCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207093,19 +216356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", "Uri": "/chats/{chat-id}/messages/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207156,19 +216420,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207227,21 +216494,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207300,18 +216565,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207370,131 +216637,139 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatMessageHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatPermissionGrant", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -207593,18 +216868,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/permissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForChat", @@ -207703,35 +216980,36 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207774,18 +217052,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatPinnedMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatPinnedMessageCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -207828,19 +217108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatPinnedMessageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatTab", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -207907,19 +217188,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatTab", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatTab", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -207970,18 +217251,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatTab", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgChatTabCount", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.All", @@ -208032,33 +217315,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgChatTabCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgChatTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCall", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -208077,19 +217362,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCall", + "OutputType": "IMicrosoftGraphCall" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCall", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -208108,19 +217394,19 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallAudioRoutingGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -208139,18 +217425,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallAudioRoutingGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallAudioRoutingGroupCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -208169,19 +217457,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallAudioRoutingGroupCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -208216,19 +217505,19 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallContentSharingSession", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallContentSharingSession", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/contentSharingSessions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -208263,18 +217552,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallContentSharingSession", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentSharingSession", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentSharingSession" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallContentSharingSessionCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/contentSharingSessions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallAsGuest.All", @@ -208309,73 +217600,78 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallContentSharingSessionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/calls/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallCount", + "ApiReferenceLink": null, + "Uri": "/communications/calls/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/operations", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/operations/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallOperationCount", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -208394,19 +217690,19 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallParticipant", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -208424,19 +217720,21 @@ "PermissionType": "Application", "IsLeastPrivilege": false } - ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallParticipant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "GET", - "ApiReferenceLink": null + ], + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationCallParticipantCount", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -208455,117 +217753,124 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationCallParticipantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecord", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsCallRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsCallRecord" }, { - "Uri": "/communications/callRecords/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecordCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecordSessionCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationCallRecordSessionSegmentCount", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}/segments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetExpanded", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/communications/onlineMeetings", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -208600,114 +217905,122 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationOnlineMeeting", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationOnlineMeetingCount", + "ApiReferenceLink": null, "Uri": "/communications/onlineMeetings/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -208742,170 +218055,182 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationOnlineMeetingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingRecordingCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptCount", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationOnlineMeetingVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationPresence", + "ApiReferenceLink": null, "Uri": "/communications/presences", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -208932,18 +218257,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationPresence", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgCommunicationPresenceByUserId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0", "Uri": "/communications/getPresencesByUserId", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Presence.Read.All", @@ -208962,19 +218289,19 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationPresenceByUserId", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudcommunications-getpresencesbyuserid?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgCommunicationPresenceCount", + "ApiReferenceLink": null, "Uri": "/communications/presences/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -209001,31 +218328,34 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgCommunicationPresenceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgCompliance", + "ApiReferenceLink": null, + "Uri": "/compliance", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompliance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompliance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContact", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-1.0", "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209052,19 +218382,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOrgContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContact", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-1.0", "Uri": "/contacts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209091,32 +218421,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContact", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgContactById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/contacts/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactCount", + "ApiReferenceLink": null, "Uri": "/contacts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209143,18 +218475,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-1.0", "Uri": "/contacts/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209181,32 +218514,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReport", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactDirectReport", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/directReports", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209241,72 +218576,78 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactDirectReport", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/orgContact", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/contacts/{orgContact-id}/directReports/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactDirectReportCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/directReports/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209341,47 +218682,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactDirectReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/directReports/user/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactDirectReportCountAsUser", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/directReports/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactManager", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/manager", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209416,19 +218760,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactManager", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgContactMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/contacts/{orgContact-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -209511,21 +218858,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgContactMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/contacts/{orgContact-id}/getMemberObjects", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -209624,35 +218972,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOf", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactMemberOf", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/memberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209687,72 +219034,78 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/contacts/{orgContact-id}/memberOf/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactMemberOfCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/memberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209787,88 +219140,93 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/memberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/transitiveMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209895,72 +219253,78 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContactTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrgContact.Read.All", @@ -209987,47 +219351,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContactTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgContactTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/transitiveMemberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContract", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-1.0", "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -210046,19 +219413,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContract", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContract" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContract", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-1.0", "Uri": "/contracts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -210077,32 +219444,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContract", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contract-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/contracts/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgContractById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/contracts/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContractCount", + "ApiReferenceLink": null, "Uri": "/contracts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -210121,18 +219490,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContractCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgContractDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", "Uri": "/contracts/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -210151,50 +219521,54 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgContractDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/contracts/{contract-id}/getMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgContractMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/contracts/{contract-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}/getMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgContractMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/contracts/{contract-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDataPolicyOperation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-1.0", "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "User.Export.All", @@ -210213,45 +219587,48 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgDataPolicyOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/datapolicyoperation-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/dataPolicyOperations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/dataPolicyOperations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDataPolicyOperationCount", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -210286,19 +219663,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-1.0", "Uri": "/devices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -210333,18 +219710,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": "Get-MgDeviceAppMgt", + "Method": "GET", + "Command": "Get-MgDeviceAppManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-get?view=graph-rest-1.0", "Uri": "/deviceAppManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210379,49 +219757,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAppManagement", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-books-deviceappmanagement-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDeviceAppManagement" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtection", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210440,18 +219789,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtection", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210461,22 +219811,6 @@ "PermissionType": "Application", "IsLeastPrivilege": true }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", @@ -210486,19 +219820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210533,18 +219868,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210579,19 +219915,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210626,19 +219963,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210673,18 +220011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210719,19 +220058,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210741,6 +220081,22 @@ "PermissionType": "Application", "IsLeastPrivilege": true }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, { "Name": "DeviceManagementApps.ReadWrite.All", "Description": "Read and write Microsoft Intune apps", @@ -210750,18 +220106,51 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210796,19 +220185,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtection", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210843,19 +220233,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtection", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210890,18 +220280,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210936,19 +220328,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -210983,18 +220375,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtectionAppCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211029,19 +220423,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtectionCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211076,18 +220470,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211122,19 +220518,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtection", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211153,19 +220550,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtection", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211184,18 +220581,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211230,19 +220629,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211277,18 +220676,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionAppCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211323,19 +220724,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAppCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211370,19 +220772,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211417,18 +220819,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionAssignmentCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211463,19 +220867,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211494,18 +220898,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211540,19 +220946,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppPolicy", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211587,19 +220994,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppPolicy", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211634,18 +221041,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppPolicyCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211680,18 +221088,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistration", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211726,19 +221136,114 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedAppRegistration" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistration", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphManagedAppRegistration" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations", + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211773,65 +221278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistration", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationAppliedPolicyCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211866,18 +221326,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/$count", + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211912,19 +221373,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationAppliedPolicyCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -211959,65 +221421,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "v1.0", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212052,18 +221468,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationIntendedPolicyCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212098,19 +221516,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationIntendedPolicyCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212145,19 +221564,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationOperation", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212192,18 +221611,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationOperationCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperationCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212238,19 +221659,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppRegistrationUserIdGraphWPreFlaggedAppRegistration", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-getuseridswithflaggedappregistration?view=graph-rest-1.0", "Uri": "/deviceAppManagement/managedAppRegistrations/getUserIdsWithFlaggedAppRegistration", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212285,18 +221706,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppRegistrationUserIdWithFlaggedAppRegistration", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedappregistration-getuseridswithflaggedappregistration?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppStatus", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212331,19 +221754,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppStatus", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212378,18 +221801,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppStatus", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { + "CommandAlias": "Get-MgDeviceAppMgtManagedAppStatusCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementManagedAppStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppStatuses/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212424,49 +221848,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementManagedAppStatusCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtManagedEBook", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212485,18 +221880,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBook" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBook", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212515,19 +221911,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBook" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212546,18 +221943,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212576,19 +221974,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedEBookAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212607,18 +222006,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212637,19 +222037,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookDeviceState", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212668,18 +222069,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookDeviceState", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212698,19 +222100,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookDeviceStateCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookDeviceStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212729,19 +222132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookInstallSummary", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEBookInstallSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212760,19 +222164,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphEBookInstallSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212791,18 +222196,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphUserInstallStateSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummary", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212821,19 +222227,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphUserInstallStateSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212852,19 +222259,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212883,18 +222291,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212913,19 +222322,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphDeviceInstallState" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceStateCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212944,19 +222354,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -212975,18 +222386,51 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213021,19 +222465,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213068,18 +222512,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignmentCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213114,19 +222560,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213145,18 +222591,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213191,19 +222639,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213238,18 +222686,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFileCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213284,19 +222734,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213331,19 +222782,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213378,18 +222829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "Get-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFileCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213424,19 +222877,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213455,19 +222909,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213486,32 +222940,34 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213530,237 +222986,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidStoreApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/androidStoreApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213779,114 +223252,122 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAndroidStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsAndroidStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsAndroidStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -213905,237 +223386,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosStoreApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosStoreApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -214154,114 +223652,122 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosStoreApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosStoreApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoStoreAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoStoreAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosVppApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/iosVppApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -214280,114 +223786,122 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosVppApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosVppApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsIoVppAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsIoVppAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMacOSDmgApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSDmgApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -214406,237 +223920,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMacOSDmgApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMacOSDmgApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMacOSLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/macOSLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -214655,237 +224186,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMacOSLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMacOSLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count", - "Permissions": [], "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAndroidLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -214904,237 +224452,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAndroidLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAndroidLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedIosLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215153,237 +224718,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedIosLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedIosLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileLobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedMobileLobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215402,237 +224984,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileLobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileLobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215651,100 +225250,108 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMicrosoftStoreForBusinessApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215763,19 +225370,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215794,18 +225401,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAssignmentCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215824,33 +225433,34 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWin32LobApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWin32LobApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/win32LobApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -215869,237 +225479,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWin32LobApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWin32LobApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppX", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAppX", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAppX" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppX", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppX", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsAppX", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -216118,237 +225745,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppX", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAppX", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAppX" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsi", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsi", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMobileMsi", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsMobileMsi" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsi", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsi", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -216367,237 +226011,254 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsi", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMobileMsi", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMobileMsi" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppX", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsUniversalAppX", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUniversalAppX" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppX", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -216616,278 +226277,298 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppX", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsUniversalAppX", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsUniversalAppX" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileContainedApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileContainedApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsWebApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsWebApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mobileApps/windowsWebApp", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -216906,133 +226587,110 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsWebApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsWebApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppAsWindowWebAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppAsWindowsWebAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppCategories", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217051,19 +226709,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppCategory" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCategory", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppCategories/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217082,19 +226741,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphMobileAppCategory" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCategoryCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217113,19 +226773,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfiguration", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217144,18 +226805,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfiguration", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217174,19 +226836,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217205,18 +226868,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217235,19 +226899,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationAssignmentCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217266,18 +226931,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217296,19 +226962,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217327,18 +226994,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217357,19 +227025,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217388,19 +227057,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217419,19 +227089,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217450,18 +227121,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217480,19 +227152,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationUserStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217511,19 +227184,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217542,18 +227216,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217572,18 +227247,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsAndroidLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217602,18 +227278,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsAndroidStoreApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsAndroidStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/androidStoreApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217632,18 +227309,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsiOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsiOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217662,18 +227340,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsIoStoreApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsIoStoreApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosStoreApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217692,18 +227371,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsIoVppApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsIoVppApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/iosVppApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217722,18 +227402,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsMacOSDmgApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsMacOSDmgApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/macOSDmgApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217752,18 +227433,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsMacOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsMacOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/macOSLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217782,18 +227464,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsManagedAndroidLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsManagedAndroidLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedAndroidLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217812,18 +227495,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsManagediOSLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsManagediOSLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedIOSLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217842,18 +227526,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsManagedMobileLobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsManagedMobileLobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/managedMobileLobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217872,18 +227557,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsMicrosoftStoreGraphFPreBusinessApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/microsoftStoreForBusinessApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217902,18 +227588,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsWin32LobApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsWin32LobApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/win32LobApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217932,18 +227619,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsWindowAppX", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsWindowsAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsAppX/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217962,18 +227650,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsWindowMobileMsi", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsWindowsMobileMsi", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsMobileMSI/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -217992,18 +227681,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsWindowUniversalAppX", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsWindowsUniversalAppX", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsUniversalAppX/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218022,18 +227712,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtMobileAppCountAsWindowWebApp", + "Method": "GET", "Command": "Get-MgDeviceAppManagementMobileAppCountAsWindowsWebApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/windowsWebApp/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218052,19 +227743,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "GET", "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218083,18 +227775,51 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "GET", "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218129,19 +227854,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218176,18 +227901,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAppCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218222,19 +227949,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAppCount", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218269,19 +227997,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218316,18 +228044,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationAssignmentCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218362,19 +228092,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218393,18 +228123,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Get-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218439,19 +228171,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtVppToken", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -218486,19 +228219,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementVppToken", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphVppToken" }, { + "CommandAlias": "Get-MgDeviceAppMgtVppToken", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementVppToken", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -218533,18 +228266,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementVppToken", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphVppToken" }, { + "CommandAlias": "Get-MgDeviceAppMgtVppTokenCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementVppTokenCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -218579,65 +228313,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementVppTokenCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218672,18 +228361,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218718,19 +228408,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218765,65 +228456,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count", - "Permissions": [ - { - "Name": "DeviceManagementApps.Read.All", - "Description": "Read Microsoft Intune apps", - "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementApps.ReadWrite.All", - "Description": "Read and write Microsoft Intune apps", - "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], "Module": "Devices.CorporateManagement", - "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218858,18 +228503,67 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyAssignmentCount", + "Method": "GET", + "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218904,19 +228598,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218951,18 +228646,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -218997,19 +228693,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219044,19 +228741,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": null + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219091,18 +228789,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219137,19 +228836,68 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Get-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFileCount", + "Method": "GET", "Command": "Get-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFileCount", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [ + { + "Name": "DeviceManagementApps.Read.All", + "Description": "Read Microsoft Intune apps", + "FullDescription": "Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementApps.ReadWrite.All", + "Description": "Read and write Microsoft Intune apps", + "FullDescription": "Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0", "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -219184,33 +228932,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceByDeviceId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDeviceById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/devices/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceCount", + "ApiReferenceLink": null, "Uri": "/devices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -219245,72 +228994,77 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/delta", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-1.0", + "Uri": "/devices/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delta?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/devices/{device-id}/extensions/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-devicemanagement-get?view=graph-rest-1.0", "Uri": "/deviceManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219393,18 +229147,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagement", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-devicemanagement-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDeviceManagement" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -219439,18 +229194,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementApplePushNotificationCertificate", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementAuditEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219469,19 +229226,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementAuditEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuditEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementAuditEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219500,18 +229257,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementAuditEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuditEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementAuditEventAuditActivityType", + "ApiReferenceLink": null, "Uri": "/deviceManagement/auditEvents/getAuditActivityTypes(category='{category}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219530,19 +229289,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Get-MgDeviceManagementAuditEventAuditActivityType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementAuditEventAuditCategory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-auditing-auditevent-getauditcategories?view=graph-rest-1.0", "Uri": "/deviceManagement/auditEvents/getAuditCategories", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219561,18 +229320,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Get-MgDeviceManagementAuditEventAuditCategory", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-auditing-auditevent-getauditcategories?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementAuditEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/auditEvents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -219591,18 +229351,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementAuditEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -219637,19 +229399,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementComplianceManagementPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -219684,18 +229446,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementComplianceManagementPartner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementComplianceManagementPartnerCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -219730,18 +229493,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementComplianceManagementPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -219776,18 +229540,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementConditionalAccessSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -219822,19 +229588,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDetectedApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -219869,18 +229635,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDetectedApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedAppCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -219915,18 +229682,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedAppCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -219945,19 +229714,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -219976,18 +229745,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedAppManagedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}/managedDevices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -220006,19 +229777,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDetectedAppManagedDeviceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220053,19 +229825,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDeviceCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceCategory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220100,18 +229872,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDeviceCategory", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceCategoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceCategories/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220146,49 +229919,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementDeviceCategoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220207,18 +229951,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220237,19 +229982,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220268,18 +230014,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220298,19 +230045,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220329,18 +230077,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220359,19 +230108,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220390,18 +230140,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220420,19 +230171,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220451,18 +230203,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220481,19 +230234,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220512,18 +230266,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220542,19 +230297,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220573,19 +230329,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220604,19 +230361,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220635,18 +230393,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220665,19 +230424,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220696,19 +230456,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220727,18 +230488,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220757,19 +230519,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220788,19 +230551,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220819,18 +230583,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220849,18 +230614,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220879,19 +230645,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220910,18 +230677,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220940,19 +230708,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -220971,19 +230740,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221002,18 +230772,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221032,19 +230803,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221063,19 +230835,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221094,19 +230867,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221125,18 +230899,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221155,19 +230930,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfiguration" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221186,18 +230962,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221216,19 +230993,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221247,18 +231025,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221277,19 +231056,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221308,18 +231088,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221338,19 +231119,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummaryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221369,18 +231151,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221399,19 +231182,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221430,18 +231214,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221460,19 +231245,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221491,19 +231277,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221522,19 +231309,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationOmaSettingPlainTextValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/getOmaSettingPlainTextValue(secretReferenceValueId='{secretReferenceValueId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221553,19 +231341,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221584,18 +231373,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221614,19 +231404,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -221645,19 +231436,52 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221692,19 +231516,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221739,18 +231563,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221785,19 +231611,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221832,18 +231658,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221878,19 +231706,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -221925,18 +231753,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementDeviceEnrollmentConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementEffectivePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-rbac-devicemanagement-geteffectivepermissions?view=graph-rest-1.0", "Uri": "/deviceManagement/getEffectivePermissions(scope='{scope}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -221955,19 +231785,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Get-MgDeviceManagementEffectivePermission", + "OutputType": "IMicrosoftGraphRolePermission" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRolePermission", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-rbac-devicemanagement-geteffectivepermissions?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222002,19 +231833,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementExchangeConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222049,18 +231880,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementExchangeConnector", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementExchangeConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222095,18 +231927,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementExchangeConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222125,19 +231959,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222156,18 +231990,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222186,18 +232021,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementImportedWindowsAutopilotDeviceIdentityCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -222216,19 +232053,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementIoUpdateStatus", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -222247,18 +232084,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementIoUpdateStatus", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementIoUpdateStatusCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/iosUpdateStatuses/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -222277,18 +232115,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementIoUpdateStatusCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222323,19 +232163,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementManagedDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222370,114 +232210,122 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementManagedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceCompliancePolicyStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementManagedDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222512,59 +232360,63 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementManagedDeviceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementManagedDeviceOverview", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDeviceOverview", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222599,86 +232451,93 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementManagedDeviceOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceOverview" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/users", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222697,19 +232556,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222728,18 +232587,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222774,19 +232635,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222821,18 +232682,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222867,19 +232730,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -222898,18 +232761,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementMobileAppTroubleshootingEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222944,19 +232809,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -222991,18 +232856,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementMobileThreatDefenseConnectorCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223037,49 +232903,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementMobileThreatDefenseConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", - "Permissions": [ - { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/notificationMessageTemplates", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223098,18 +232935,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/notificationMessageTemplates/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223128,18 +232966,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223158,19 +232997,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223189,18 +233029,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223219,19 +233060,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessageCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223248,37 +233090,22 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementPartners", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223313,18 +233140,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementPartners/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223359,18 +233187,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementPartnerCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementPartners/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223405,19 +233234,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223452,18 +233282,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -223498,18 +233329,66 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementRemoteAssistancePartnerCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [ + { + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223576,18 +233455,20 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgDeviceManagementReport", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementReports", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportCachedReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcachedreport?view=graph-rest-1.0", "Uri": "/deviceManagement/reports/getCachedReport", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223638,19 +233519,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportCachedReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcachedreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223701,19 +233583,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancesummaryreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getCompliancePolicyNonComplianceSummaryReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223764,19 +233647,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportCompliancePolicyNonComplianceSummaryReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancesettingnoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancepolicynoncompliancesummaryreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getComplianceSettingNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223827,19 +233711,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportComplianceSettingNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getcompliancesettingnoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223890,19 +233775,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancesummaryreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getConfigurationPolicyNonComplianceSummaryReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -223953,19 +233839,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportConfigurationPolicyNonComplianceSummaryReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationsettingnoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationpolicynoncompliancesummaryreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getConfigurationSettingNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224016,19 +233903,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportConfigurationSettingNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentpersettingcontributingprofiles?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getconfigurationsettingnoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getDeviceManagementIntentPerSettingContributingProfiles", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224079,19 +233967,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentPerSettingContributingProfile", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentsettingsreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentpersettingcontributingprofiles?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getDeviceManagementIntentSettingsReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224142,19 +234031,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportDeviceManagementIntentSettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicemanagementintentsettingsreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getDeviceNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224205,19 +234095,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportDeviceNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdevicenoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getDevicesWithoutCompliancePolicyReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224268,19 +234159,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportDeviceWithoutCompliancePolicyReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getdeviceswithoutcompliancepolicyreport?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementReportExportJob", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/exportJobs/{deviceManagementExportJob-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224331,19 +234223,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgDeviceManagementReportExportJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementReportExportJob", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/exportJobs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224394,18 +234286,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgDeviceManagementReportExportJob", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExportJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExportJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementReportExportJobCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports/exportJobs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224456,18 +234349,20 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgDeviceManagementReportExportJobCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportFilter", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getreportfilters?view=graph-rest-1.0", "Uri": "/deviceManagement/reports/getReportFilters", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224518,19 +234413,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportFilter", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportHistoricalReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-gethistoricalreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getHistoricalReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getreportfilters?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getHistoricalReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224581,19 +234477,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportHistoricalReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-gethistoricalreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getNoncompliantDevicesAndSettingsReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224644,19 +234541,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportNoncompliantDeviceAndSettingReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getnoncompliantdevicesandsettingsreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceMetadata", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224707,19 +234605,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceMetadata", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancemetadata?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224770,19 +234669,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancereport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getPolicyNonComplianceSummaryReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224833,19 +234733,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportPolicyNonComplianceSummaryReport", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getsettingnoncompliancereport?view=graph-rest-1.0", + "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getpolicynoncompliancesummaryreport?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/reports/getSettingNonComplianceReport", + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -224896,19 +234797,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Get-MgDeviceManagementReportSettingNonComplianceReport", - "Variants": [ - "Get", - "GetExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-reporting-devicemanagementreports-getsettingnoncompliancereport?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -224943,19 +234845,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementResourceOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -224990,18 +234892,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementResourceOperation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementResourceOperationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225036,18 +234939,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementResourceOperationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225082,19 +234987,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225129,18 +235034,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225175,32 +235081,35 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225235,19 +235144,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225282,18 +235191,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225328,18 +235238,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225374,19 +235286,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225421,18 +235333,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225467,19 +235381,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}/roleDefinition", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.Read.All", @@ -225514,19 +235429,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementRoleDefinitionRoleAssignmentRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/softwareUpdateStatusSummary", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -225545,49 +235460,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementSoftwareUpdateStatusSummary", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSoftwareUpdateStatusSummary" }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", - "Permissions": [ - { - "Name": "DeviceManagementServiceConfig.Read.All", - "Description": "Read Microsoft Intune configuration", - "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementServiceConfig.ReadWrite.All", - "Description": "Read and write Microsoft Intune configuration", - "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225606,18 +235492,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225636,18 +235523,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTelecomExpenseManagementPartnerCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225666,19 +235554,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225697,18 +235586,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225727,19 +235617,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225758,18 +235649,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225788,19 +235680,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225819,19 +235712,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAcceptanceStatusTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}/termsAndConditions", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225850,19 +235744,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditions" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225881,18 +235776,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225911,19 +235807,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/termsAndConditions/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -225942,18 +235839,51 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementTermAndConditionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [ + { + "Name": "DeviceManagementServiceConfig.Read.All", + "Description": "Read Microsoft Intune configuration", + "FullDescription": "Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementServiceConfig.ReadWrite.All", + "Description": "Read and write Microsoft Intune configuration", + "FullDescription": "Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -225972,19 +235902,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementTroubleshootingEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226003,18 +235933,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementTroubleshootingEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementTroubleshootingEventCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/troubleshootingEvents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226033,18 +235964,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementTroubleshootingEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226079,19 +236012,67 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "v1.0", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226126,18 +236107,66 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226172,19 +236201,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226219,18 +236249,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226265,18 +236296,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetailCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226311,19 +236343,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226358,18 +236391,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226404,18 +236438,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceIdCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226450,19 +236485,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226497,18 +236532,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226543,18 +236580,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226589,18 +236627,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226635,19 +236674,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226682,18 +236722,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226728,18 +236769,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformanceCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226774,19 +236816,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226821,18 +236864,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226867,18 +236911,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226913,19 +236958,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -226960,18 +237006,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227006,18 +237053,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetailCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227052,19 +237100,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227099,18 +237147,63 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null + "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/$count", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227145,18 +237238,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227191,58 +237285,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/$count", - "Permissions": [], "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValueCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227277,19 +237333,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227324,18 +237381,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaseline", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/appHealthMetrics", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227370,19 +237429,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineAppHealthMetric", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/batteryHealthMetrics", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227417,19 +237476,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBatteryHealthMetric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/bestPracticesMetrics", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227464,19 +237524,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineBestPracticeMetric", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227511,18 +237572,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/deviceBootPerformanceMetrics", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227557,19 +237620,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineDeviceBootPerformanceMetric", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/rebootAnalyticsMetrics", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227604,19 +237668,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineRebootAnalyticMetric", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/resourcePerformanceMetrics", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227651,19 +237716,92 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineResourcePerformanceMetric", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" + }, + { + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null + "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValueCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}/workFromAnywhereMetrics", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227698,19 +237836,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticBaselineWorkFromAnywhereMetric", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227745,86 +237883,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategory", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/$count", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", - "Variants": [ - "Get", - "GetViaIdentity" - ], + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/$count", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", "Variants": [ - "List" + "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/$count", - "Permissions": [], "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticCategoryMetricValueCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227859,19 +237930,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227906,18 +237978,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227952,18 +238025,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDevicePerformanceCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScoreCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -227998,19 +238072,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228045,18 +238120,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228091,18 +238167,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceScoreCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228137,19 +238214,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228184,18 +238262,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228230,18 +238309,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistoryCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228276,24 +238356,25 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "Module": "DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -228307,39 +238388,40 @@ "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/$count", + "Module": "DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -228353,34 +238435,35 @@ "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -228415,24 +238498,25 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -228446,39 +238530,40 @@ "IsLeastPrivilege": false }, { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/$count", + "Module": "DeviceManagement", "Permissions": [ { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementManagedDevices.Read.All", + "Description": "Read Microsoft Intune devices", + "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": true @@ -228492,34 +238577,35 @@ "IsLeastPrivilege": false }, { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false }, { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "Name": "DeviceManagementConfiguration.Read.All", + "Description": "Read Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformanceCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistoryCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228554,19 +238640,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228601,18 +238688,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/$count", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228647,18 +238735,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticMetricHistoryCount", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScoreCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228693,19 +238782,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228740,64 +238829,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScore", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/$count", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticModelScoreCount", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "v1.0", "Variants": [ - "Get" + "Get", + "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228832,65 +238877,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticOverview", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", - "Permissions": [ - { - "Name": "DeviceManagementManagedDevices.Read.All", - "Description": "Read Microsoft Intune devices", - "FullDescription": "Allows the app to read the properties of devices managed by Microsoft Intune, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "DeviceManagementConfiguration.Read.All", - "Description": "Read Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "v1.0", "Variants": [ - "Get", - "GetViaIdentity" + "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228925,18 +238924,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistory", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistoryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -228971,18 +238971,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticScoreHistoryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229017,18 +239018,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229063,19 +239066,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229110,18 +239113,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229156,18 +239160,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229202,19 +239208,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229249,18 +239255,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229295,19 +239303,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDeviceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229342,19 +239351,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229389,18 +239398,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -229435,62 +239445,34 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpoint", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEndpoint" }, { - "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}", - "Permissions": [ - { - "Name": "CloudPC.Read.All", - "Description": "Read Cloud PCs", - "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "CloudPC.ReadWrite.All", - "Description": "Read and write Cloud PCs", - "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/auditEvents/{cloudPcAuditEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/auditEvents", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229509,18 +239491,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcAuditEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/auditEvents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcAuditEvent", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229539,18 +239522,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", + "OutputType": "IMicrosoftGraphCloudPcAuditEvent" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventAuditActivityType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/auditEvents/getAuditActivityTypes", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcauditevent-getauditactivitytypes?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/virtualEndpoint/auditEvents/$count", + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229569,18 +239553,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointAuditEventCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/auditEvents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229599,19 +239584,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229630,18 +239616,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPc" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPc", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229660,18 +239647,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPc" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointCloudPcCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229690,19 +239678,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229721,18 +239710,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229751,18 +239741,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229781,18 +239772,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointDeviceImageSourceImage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/getSourceImages", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-getsourceimages?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229811,19 +239803,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcSourceDeviceImage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229842,18 +239835,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229872,18 +239866,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointGalleryImageCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229902,19 +239897,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229933,18 +239929,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/$count", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229963,18 +239960,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointOnPremiseConnectionCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -229993,19 +239991,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -230024,141 +240023,182 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [ + { + "Name": "CloudPC.Read.All", + "Description": "Read Cloud PCs", + "FullDescription": "Allows the app to read the properties of Cloud PCs, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "CloudPC.ReadWrite.All", + "Description": "Read and write Cloud PCs", + "FullDescription": "Allows the app to read and write the properties of Cloud PCs, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -230177,18 +240217,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementVirtualEndpointProvisioningPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -230207,19 +240249,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -230238,59 +240280,63 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementVirtualEndpointUserSetting", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/userSettings/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.Read.All", @@ -230309,18 +240355,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Get-MgDeviceManagementVirtualEndpointUserSettingCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -230339,19 +240387,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -230370,18 +240418,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentity", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -230400,18 +240449,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgDeviceManagementWindowsAutopilotDeviceIdentityCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230430,19 +240481,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230461,18 +240512,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230491,18 +240543,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionAppLearningSummaryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230521,19 +240575,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230552,18 +240606,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -230582,18 +240637,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummaryCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230628,19 +240685,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230675,18 +240732,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformationCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230721,18 +240779,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230767,19 +240827,19 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230814,18 +240874,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -230860,19 +240922,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Get-MgDeviceManagementWindowsMalwareInformationDeviceMalwareStateCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/devices/{device-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -230955,21 +241020,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDeviceMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/devices/{device-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/devices/{device-id}/getMemberObjects", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Application.Read.All", @@ -231068,35 +241134,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOf", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceMemberOf", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/memberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231131,72 +241196,78 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/devices/{device-id}/memberOf/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceMemberOfCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/memberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231231,47 +241302,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/memberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredOwner", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231306,126 +241379,135 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredOwner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/devices/{device-id}/registeredOwners/appRoleAssignment", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredOwners/endpoint", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/devices/{device-id}/registeredOwners/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231460,18 +241542,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredOwnerCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredOwners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231506,75 +241590,79 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/appRoleAssignment/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/user/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredUser", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231609,126 +241697,135 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/devices/{device-id}/registeredUsers/appRoleAssignment", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredUsers/endpoint", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/devices/{device-id}/registeredUsers/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredUserByRef", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231763,18 +241860,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceRegisteredUserCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/registeredUsers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Device.Read.All", @@ -231809,89 +241908,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceRegisteredUserCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/appRoleAssignment/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/user/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceRegisteredUserCountAsUser", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/transitiveMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -231926,72 +242030,78 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDeviceTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/devices/{device-id}/transitiveMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -232026,60 +242136,64 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDeviceTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDeviceTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/transitiveMemberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectory", + "ApiReferenceLink": null, + "Uri": "/directory", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232114,19 +242228,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232161,18 +242275,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnit", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitCount", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232207,18 +242322,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitDelta", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232253,59 +242369,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitExtensionCount", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232340,32 +242460,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsApplication", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232400,32 +242522,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsApplication", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsDevice", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232460,32 +242584,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsGroup", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232520,32 +242646,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsOrgContact", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232580,32 +242708,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsOrgContact", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232640,32 +242770,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberAsUser", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232700,18 +242832,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberAsUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232746,18 +242879,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCount", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232792,19 +242927,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/application/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232839,19 +242975,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsApplication", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/device/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232886,19 +243023,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/group/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232933,19 +243071,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/orgContact/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -232980,19 +243119,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsOrgContact", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/servicePrincipal/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -233027,19 +243167,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsServicePrincipal", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/user/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.Read.All", @@ -233074,19 +243215,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitMemberCountAsUser", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -233121,19 +243263,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -233168,18 +243310,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -233214,19 +243358,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAdministrativeUnitScopedRoleMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/attributeSets/{attributeSet-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233245,19 +243390,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAttributeSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttributeSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAttributeSet", + "ApiReferenceLink": null, "Uri": "/directory/attributeSets", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233276,18 +243421,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAttributeSet", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttributeSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryAttributeSetCount", + "ApiReferenceLink": null, "Uri": "/directory/attributeSets/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233306,18 +243452,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryAttributeSetCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233336,19 +243484,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233367,18 +243515,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233397,19 +243547,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAllowedValue" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233428,18 +243578,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAllowedValue" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233458,19 +243610,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionAllowedValueCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionCount", + "ApiReferenceLink": null, "Uri": "/directory/customSecurityAttributeDefinitions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "CustomSecAttributeDefinition.Read.All", @@ -233489,358 +243641,385 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryCustomSecurityAttributeDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItem", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedAdministrativeUnit", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/deletedItems/administrativeUnit", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedAdministrativeUnit", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/application", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedApplication", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/deletedItems/application", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedApplication", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/device", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedDevice", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/deletedItems/device", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedDevice", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedGroup", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/deletedItems/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedGroup", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedServicePrincipal", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/deletedItems/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedServicePrincipal", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedUser", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directory/deletedItems/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Get-MgDirectoryDeletedUser", + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directory/deletedItems/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryDeletedItemById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/deletedItems/administrativeUnit/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/application/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/device/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/servicePrincipal/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/user/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeletedItemCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryDeletedItemMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryDeletedItemMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/{directoryObject-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/deviceLocalCredentials", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/deviceLocalCredentials/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryDeviceLocalCredentialCount", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -233859,19 +244038,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryFederationConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -233890,18 +244069,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryFederationConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryFederationConfigurationCount", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -233920,99 +244100,109 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryFederationConfigurationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-1.0", + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-get?view=graph-rest-1.0" + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects/getAvailableExtensionProperties", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryObjectAvailableExtensionProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getavailableextensionproperties?view=graph-rest-1.0", + "Uri": "/directoryObjects/getAvailableExtensionProperties", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getavailableextensionproperties?view=graph-rest-1.0" + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtensionProperty" }, { - "Uri": "/directoryObjects/getByIds", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryObjectById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/directoryObjects/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryObjects/$count", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryObjectCount", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryObjects/delta", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryObjectDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", + "Uri": "/directoryObjects/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0" + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDirectoryObjectMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/directoryObjects/{directoryObject-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -234095,21 +244285,22 @@ "IsLeastPrivilege": false } ], - "Module": "DirectoryObjects", - "Command": "Get-MgDirectoryObjectMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgDirectoryObjectMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/directoryObjects/{directoryObject-id}/getMemberObjects", + "Module": "DirectoryObjects", "Permissions": [ { "Name": "Application.Read.All", @@ -234208,35 +244399,34 @@ "IsLeastPrivilege": false } ], - "Module": "DirectoryObjects", - "Command": "Get-MgDirectoryObjectMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, "Uri": "/directory/onPremisesSynchronization", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OnPremDirectorySynchronization.Read.All", @@ -234255,18 +244445,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryOnPremiseSynchronization", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryOnPremiseSynchronizationCount", + "ApiReferenceLink": null, "Uri": "/directory/onPremisesSynchronization/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OnPremDirectorySynchronization.Read.All", @@ -234285,18 +244476,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryOnPremiseSynchronizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0", "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234331,19 +244524,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRole", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-1.0", "Uri": "/directoryRoles", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234378,32 +244571,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRole", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/directoryRoles/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleByRoleTemplateId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0", "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234438,19 +244634,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleByRoleTemplateId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234485,18 +244681,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-1.0", "Uri": "/directoryRoles/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234531,18 +244728,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleMember", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234577,180 +244775,193 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/application", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/device", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/group", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/user", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleMemberByRef", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234785,18 +244996,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleMemberCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -234831,149 +245044,158 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/directoryRoles/{directoryRole-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/directoryRoles/{directoryRole-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleScopedMember", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235008,18 +245230,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleScopedMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleScopedMemberCount", + "ApiReferenceLink": null, "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235054,19 +245278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleScopedMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235101,19 +245326,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-1.0", "Uri": "/directoryRoleTemplates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235148,32 +245373,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryroletemplate-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "Uri": "/directoryRoleTemplates/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleTemplateCount", + "ApiReferenceLink": null, "Uri": "/directoryRoleTemplates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235208,18 +245435,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDirectoryRoleTemplateDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", "Uri": "/directoryRoleTemplates/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -235254,104 +245482,112 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDirectoryRoleTemplateDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgDirectoryRoleTemplateMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDirectorySubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-1.0", "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235378,19 +245614,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomain", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDomain" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-1.0", "Uri": "/domains", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235417,18 +245653,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomain", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDomain" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainCount", + "ApiReferenceLink": null, "Uri": "/domains/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235455,18 +245692,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235485,60 +245724,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainFederationConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/federationConfiguration", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/federationConfiguration/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDomainFederationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDomainNameReference", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/domainNameReferences/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainNameReference", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/domainNameReferences", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235557,18 +245799,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainNameReference", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainNameReferenceCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/domainNameReferences/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235587,33 +245831,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainNameReferenceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainServiceConfigurationRecord", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235632,18 +245877,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainServiceConfigurationRecord", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainServiceConfigurationRecordCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/serviceConfigurationRecords/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235662,33 +245909,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainServiceConfigurationRecordCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainVerificationDnsRecord", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235707,18 +245955,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainVerificationDnsRecord", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDomainVerificationDnsRecordCount", + "ApiReferenceLink": null, "Uri": "/domains/{domain-id}/verificationDnsRecords/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.Read.All", @@ -235737,19 +245987,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgDomainVerificationDnsRecordCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -235800,252 +246051,270 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDrive", + "ApiReferenceLink": null, + "Uri": "/drives", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236112,48 +246381,51 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemAnalytic", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236204,73 +246476,78 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236321,19 +246598,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemAnalyticLastSevenDay", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236384,33 +246662,34 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemAnalyticTime", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemChild", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236461,32 +246740,35 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemChild", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemChildCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236537,19 +246819,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemChildCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -236600,472 +246883,505 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237116,19 +247432,19 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemPermission", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237179,18 +247495,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemPermission", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemPermissionCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237241,88 +247559,93 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemPermissionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemThumbnail", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237373,18 +247696,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemThumbnail", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemThumbnailCount", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237435,19 +247760,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemThumbnailCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237498,19 +247824,19 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemVersion", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237561,18 +247887,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemVersion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemVersionContent", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237623,19 +247951,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemVersionContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -237686,1037 +248015,1113 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveItemVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/list/items/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/items/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/root/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -238767,629 +249172,672 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgDriveRootDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/special", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClass", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -239416,19 +249864,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClass", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClass", + "ApiReferenceLink": null, "Uri": "/education/classes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -239455,18 +249903,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClass", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239533,19 +249983,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239612,18 +250062,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCategory", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239690,19 +250142,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCategory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCategory", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239769,19 +250222,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCategory", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCategoryByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239848,18 +250301,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCategoryByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCategoryCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentCategories/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -239926,21 +250383,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCategoryCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignmentCategories/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240007,21 +250465,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCategoryDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240088,19 +250545,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240167,19 +250625,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentDefault", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240246,33 +250705,35 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240339,19 +250800,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240418,18 +250879,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentResource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentResourceCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240496,19 +250959,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentResourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240575,19 +251039,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentRubric", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240654,19 +251119,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentRubricByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240733,60 +251199,64 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSetting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassAssignmentSettingGradingCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240853,19 +251323,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmission", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -240932,18 +251402,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmission", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241010,33 +251482,34 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.Read", @@ -241071,18 +251544,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionOutcome", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationOutcome" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.Read", @@ -241117,19 +251592,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionOutcomeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241196,19 +251672,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241275,18 +251751,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionResource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241353,19 +251831,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionResourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241432,19 +251911,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241511,18 +251990,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -241589,19 +252070,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassAssignmentSubmissionSubmittedResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassCount", + "ApiReferenceLink": null, "Uri": "/education/classes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241628,18 +252109,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-1.0", "Uri": "/education/classes/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241690,18 +252172,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationclass-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassGroup", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/group", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241752,46 +252236,48 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassMember", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241826,18 +252312,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassMemberByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241872,18 +252359,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassMemberCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -241918,115 +252407,320 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModuleCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassModuleResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.Read", + "Description": "Read your class modules and resources", + "FullDescription": "Allows the app to read modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.Read.All", + "Description": "Read all class modules and resources", + "FullDescription": "Allows the app to read all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationClassSchool", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassSchool", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/schools", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242053,18 +252747,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassSchool", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/schools/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242091,19 +252787,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassSchoolCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassTeacher", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242130,18 +252826,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassTeacher", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassTeacherByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242168,18 +252865,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassTeacherByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationClassTeacherCount", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/teachers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242206,19 +252905,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationClassTeacherCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMe", + "ApiReferenceLink": null, "Uri": "/education/me", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242245,32 +252944,34 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMe", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeAssignment", + "ApiReferenceLink": null, "Uri": "/education/me/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -242337,72 +253038,77 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/me/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -242469,292 +253175,313 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/assignments/delta", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", + "Uri": "/education/me/assignments/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/classes/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeClass", + "ApiReferenceLink": null, + "Uri": "/education/me/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeClass", + "ApiReferenceLink": null, "Uri": "/education/me/classes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242781,18 +253508,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeClass", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeClassCount", + "ApiReferenceLink": null, "Uri": "/education/me/classes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -242819,18 +253547,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -242865,19 +253595,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeRubric", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -242912,18 +253642,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeRubric", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeRubricCount", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -242958,32 +253689,34 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeRubricCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeSchool", + "ApiReferenceLink": null, + "Uri": "/education/me/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeSchool", + "ApiReferenceLink": null, "Uri": "/education/me/schools", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243010,18 +253743,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeSchool", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/me/schools/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243048,32 +253782,34 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeSchoolCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/me/taughtClasses/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeTaughtClass", + "ApiReferenceLink": null, + "Uri": "/education/me/taughtClasses/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeTaughtClass", + "ApiReferenceLink": null, "Uri": "/education/me/taughtClasses", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243100,18 +253836,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeTaughtClass", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeTaughtClassCount", + "ApiReferenceLink": null, "Uri": "/education/me/taughtClasses/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243138,18 +253875,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeTaughtClassCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationMeUser", + "ApiReferenceLink": null, "Uri": "/education/me/user", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243208,70 +253946,76 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationMeUser", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/education/me/user/mailboxSettings", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/me/user/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/me/user/serviceProvisioningErrors", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/me/user/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/me/user/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationMeUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/me/user/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationRoot", + "ApiReferenceLink": null, + "Uri": "/education", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchool", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243298,19 +254042,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchool", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchool", + "ApiReferenceLink": null, "Uri": "/education/schools", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243337,18 +254081,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchool", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchoolAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243399,57 +254145,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchoolAdministrativeUnit", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/education/schools/{educationSchool-id}/classes", - "Permissions": [ - { - "Name": "EduRoster.ReadBasic", - "Description": "View a limited subset of your school, class and user information", - "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "EduRoster.Read.All", - "Description": "Read the organization's roster", - "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "EduRoster.ReadWrite.All", - "Description": "Read and write the organization's roster", - "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationSchoolClass", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243476,18 +254184,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", + "OutputType": "IMicrosoftGraphEducationClass" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationSchoolClassByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/classes/$count", + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243514,19 +254223,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationSchoolClassCount", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/$count", + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243553,18 +254263,58 @@ "IsLeastPrivilege": false } ], - "Module": "Education", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationSchoolCount", + "ApiReferenceLink": null, + "Uri": "/education/schools/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduRoster.ReadBasic", + "Description": "View a limited subset of your school, class and user information", + "FullDescription": "Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduRoster.Read.All", + "Description": "Read the organization's roster", + "FullDescription": "Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "EduRoster.ReadWrite.All", + "Description": "Read and write the organization's roster", + "FullDescription": "Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchoolDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-1.0", "Uri": "/education/schools/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243623,18 +254373,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchoolDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationschool-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchoolUser", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -243653,18 +254404,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchoolUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchoolUserByRef", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -243683,18 +254435,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchoolUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationSchoolUserCount", + "ApiReferenceLink": null, "Uri": "/education/schools/{educationSchool-id}/users/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -243713,19 +254467,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationSchoolUserCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUser", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -243752,21 +254509,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUser", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUser", + "ApiReferenceLink": null, "Uri": "/education/users", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -243785,32 +254540,34 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserAssignment", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -243877,72 +254634,78 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentCategoryDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationcategory-delta?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserAssignmentCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadBasic", @@ -244009,294 +254772,314 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/delta", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-delta?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/gradingCategory", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionOutcomeCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserAssignmentSubmissionSubmittedResourceCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserClass", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserClass", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/classes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244323,18 +255106,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserClass", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserClassCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/classes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244361,19 +255146,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserClassCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserCount", + "ApiReferenceLink": null, "Uri": "/education/users/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.Read.All", @@ -244392,18 +255177,19 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-1.0", "Uri": "/education/users/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244462,87 +255248,93 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationuser-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/rubrics", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserRubricCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserSchool", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserSchool", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/schools", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244569,18 +255361,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserSchool", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSchool" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserSchoolCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/schools/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244607,60 +255401,63 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserSchoolCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEducationUserTaughtClass", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/taughtClasses/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserTaughtClass", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/taughtClasses", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244687,18 +255484,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserTaughtClass", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEducationUserTaughtClassCount", + "ApiReferenceLink": null, "Uri": "/education/users/{educationUser-id}/taughtClasses/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadBasic", @@ -244725,19 +255524,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Get-MgEducationUserTaughtClassCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244756,19 +255556,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244787,18 +255587,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-1.0", "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/getApplicablePolicyRequirements", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244817,32 +255619,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageApplicablePolicyRequirement", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-getapplicablepolicyrequirements?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequestRequirements" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244861,19 +255665,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApprovalStage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244892,18 +255696,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApprovalStage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244922,60 +255728,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageAssignmentApprovalStageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/catalog", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/catalog", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -244994,18 +255803,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245024,18 +255834,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245054,18 +255865,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245084,18 +255896,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245114,32 +255927,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleWith", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith/{accessPackage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleWith", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackagesIncompatibleWith", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245158,18 +255973,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAccessPackageIncompatibleWith", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignment", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245188,19 +256005,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignment", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245219,18 +256036,21 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentAdditional", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-1.0", "Uri": "/identityGovernance/entitlementManagement/assignments/additionalAccess", + "ApiVersion": "v1.0", + "Variants": [ + "Access", + "Access1", + "AccessViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245249,20 +256069,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentAdditional", - "Variants": [ - "Access", - "Access1", - "AccessViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-additionalaccess?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245281,18 +256100,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentPolicy", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245311,21 +256134,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentPolicy", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentPolicy", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245344,46 +256165,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/accessPackage", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/catalog", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/catalog", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentPolicyCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245402,114 +256226,123 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}/customExtension", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSettingCustomExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}/customExtension", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageQuestion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageQuestion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementAssignmentPolicyQuestionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245528,19 +256361,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245559,18 +256392,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementAssignmentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245589,18 +256423,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementAssignmentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementCatalog", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245619,19 +256455,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementCatalog", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementCatalog", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/catalogs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245650,32 +256486,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementCatalog", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogAccessPackageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/accessPackages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementCatalogCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/catalogs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -245694,117 +256532,118 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementCatalogCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogCustomWorkflowExtensionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -245813,31 +256652,33 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -245846,167 +256687,178 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -246015,31 +256867,33 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -246048,164 +256902,183 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246224,19 +257097,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246255,18 +257128,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganization", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246285,18 +257159,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246315,18 +257190,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246345,18 +257221,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246375,19 +257253,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationExternalSponsorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246406,18 +257284,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246436,18 +257315,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -246466,62 +257347,58 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementConnectedOrganizationInternalSponsorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -246530,537 +257407,576 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/{accessPackage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogAccessPackageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/accessPackages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtensionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -247069,31 +257985,33 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -247102,167 +258020,178 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -247271,31 +258200,33 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -247304,1169 +258235,1260 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgEntitlementManagementResourceScopeResourceRoleResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/environment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgEntitlementManagementSetting", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -248485,31 +259507,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgEntitlementManagementSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "Uri": "/external", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternal", + "ApiReferenceLink": null, + "Uri": "/external", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -248536,19 +259561,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -248575,18 +259600,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnectionCount", + "ApiReferenceLink": null, "Uri": "/external/connections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -248613,18 +259639,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnectionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnectionGroup", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.Read.All", @@ -248651,87 +259679,93 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/$count", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionGroupMemberCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnectionItem", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -248758,101 +259792,108 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnectionItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItemActivityCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItemActivityPerformedBy", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}/performedBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/$count", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionItemCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnectionOperation", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -248879,46 +259920,49 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnectionOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/connections/{externalConnection-id}/operations", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/connections/{externalConnection-id}/operations/$count", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgExternalConnectionOperationCount", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgExternalConnectionSchema", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/schema", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -248945,19 +259989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgExternalConnectionSchema", + "OutputType": "IMicrosoftGraphExternalConnectorsSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0", + "Uri": "/groups/{group-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsSchema", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}", + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -249000,19 +260045,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-1.0", "Uri": "/groups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -249055,18 +260100,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupAcceptedSender", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -249085,18 +260131,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupAcceptedSender", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupAcceptedSenderByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -249115,18 +260162,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupAcceptedSenderByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupAcceptedSenderCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/acceptedSenders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -249145,33 +260194,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupAcceptedSenderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -249198,18 +260248,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgGroupAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/appRoleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -249236,33 +260288,35 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgGroupAppRoleAssignmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/getByIds", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/groups/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0", "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -249305,33 +260359,35 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupByUniqueName", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -249366,19 +260422,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupCalendarEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -249397,18 +260453,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupCalendarEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupCalendarEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", "Uri": "/groups/{group-id}/calendar/events/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Calendars.Read", @@ -249435,89 +260493,95 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupCalendarEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupCalendarPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/getSchedule", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/getSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduleInformation" }, { - "Uri": "/groups/{group-id}/calendar/calendarView", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupCalendarView", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarView", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249552,19 +260616,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversation" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249599,18 +260663,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249645,19 +260711,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249692,19 +260759,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThread", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249739,18 +260806,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThread", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249785,19 +260854,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249832,21 +260904,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadPost", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249881,32 +260951,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadPost", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249941,18 +261013,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadPostAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadPostAttachmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -249987,19 +261061,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadPostAttachmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupConversationThreadPostCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/$count", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -250034,142 +261109,151 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupConversationThreadPostCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupConversationThreadPostInReplyToExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupCount", + "ApiReferenceLink": null, "Uri": "/groups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -250212,32 +261296,35 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/createdOnBehalfOf", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupCreatedOnBehalfOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/createdOnBehalfOf", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupDefaultDrive", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drive", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -250288,19 +261375,19 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgGroupDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-1.0", "Uri": "/groups/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -250343,32 +261430,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupDrive", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drives", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -250419,128 +261508,138 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgGroupDrive", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupDriveCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/drives/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -250591,2610 +261690,2797 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgGroupDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -253229,19 +264515,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -253260,73 +264546,79 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupEventCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupEventCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Group.Read.All", @@ -253345,19 +264637,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupEventCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", "Uri": "/groups/{group-id}/events/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Calendars.Read", @@ -253384,74 +264677,78 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupEventInstance", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupEventInstance", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -253470,73 +264767,79 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupEventInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupEventInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupEventInstanceCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}/instances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -253555,101 +264858,110 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgGroupEventInstanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupEventInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/extensions/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-1.0", "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -253668,21 +264980,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupLifecyclePolicy", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-1.0", "Uri": "/groupLifecyclePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -253701,18 +265011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupLifecyclePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupLifecyclePolicyByGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/groupLifecyclePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -253731,18 +265042,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupLifecyclePolicyByGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupLifecyclePolicyCount", + "ApiReferenceLink": null, "Uri": "/groupLifecyclePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -253761,18 +265073,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupLifecyclePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupMember", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -253815,180 +265128,193 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/members/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/members/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/members/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/members/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/members/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/members/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupMemberByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -254031,18 +265357,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupMemberCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -254085,103 +265413,112 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/application/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/device/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/orgContact/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/servicePrincipal/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/user/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgGroupMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/groups/{group-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -254264,21 +265601,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgGroupMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/getMemberObjects", + "Module": "Groups", "Permissions": [ { "Name": "Application.Read.All", @@ -254377,35 +265715,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupMemberOf", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/memberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -254440,72 +265777,78 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/memberOf/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupMemberOfCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/memberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -254540,334 +265883,358 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/memberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupMemberWithLicenseErrorCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/membersWithLicenseErrors/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -254910,19 +266277,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -254965,18 +266332,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebookCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255019,19 +266388,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteNotebookCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", "Uri": "/groups/{group-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -255074,21 +266446,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebookSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255131,18 +266501,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteNotebookSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255185,18 +266556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteNotebookSectionGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteOperation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255239,33 +266612,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -255300,19 +266675,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenotePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -255344,35 +266719,38 @@ "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", "IsAdmin": false, "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Notes", - "Command": "Get-MgGroupOnenotePage", - "Variants": [ - "List" + "IsLeastPrivilege": false + } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenotePageCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -255407,19 +266785,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenotePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "Module": "Groups", "Permissions": [ { "Name": "Notes.Create", @@ -255462,33 +266841,35 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupOnenoteRecentNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -255523,33 +266904,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255592,19 +266975,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255647,18 +267030,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255701,19 +267086,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255756,19 +267142,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255811,19 +267198,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255866,21 +267256,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -255923,18 +267311,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -255969,18 +267358,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgGroupOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOwner", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -256023,180 +267413,193 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupOwner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/owners/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/owners/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/owners/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/owners/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/owners/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOwnerByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -256239,18 +267642,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupOwnerCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/owners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -256293,117 +267698,124 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/application/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/device/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/orgContact/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/user/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupPermissionGrant", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -256438,18 +267850,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/permissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -256484,19 +267898,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -256523,21 +267940,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupPhoto", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photos", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -256564,18 +267979,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupPhoto", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupPhotoContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "ProfilePhoto.Read.All", @@ -256602,49 +268021,49 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupPhotoContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPlanner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupPlannerPlan", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/planner/plans", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -256695,31 +268114,34 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgGroupPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPlannerPlanBucket", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupPlannerPlanCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/planner/plans/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -256770,46 +268192,48 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgGroupPlannerPlanCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupPlannerPlanTask", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupRejectedSender", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -256828,18 +268252,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupRejectedSender", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupRejectedSenderByRef", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -256858,18 +268283,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupRejectedSenderByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupRejectedSenderCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/rejectedSenders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -256888,19 +268315,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupRejectedSenderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/{groupSetting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -256935,21 +268365,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSetting", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -256984,19 +268413,21 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSetting", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSetting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupSetting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSettingCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -257031,34 +268462,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSettingCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groupSettingTemplates/getByIds", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSettingTemplateById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSettingTemplateCount", + "ApiReferenceLink": null, "Uri": "/groupSettingTemplates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -257077,18 +268508,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSettingTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSettingTemplateDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0", "Uri": "/groupSettingTemplates/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -257107,18 +268539,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSettingTemplateDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-get?view=graph-rest-1.0", "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -257137,19 +268571,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSettingTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-list?view=graph-rest-1.0", "Uri": "/groupSettingTemplates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.Read.All", @@ -257168,3715 +268602,3973 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupSettingTemplateGroupSettingTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSettingTemplate", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/groupsettingtemplate-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberGroups", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSettingTemplateMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberObjects", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSettingTemplateMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/$count", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drive", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteDefaultDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/delta", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteDriveCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/drives/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteExternalColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/externalColumns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/drives", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathExternalColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/externalColumns", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/items", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathByPath", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteGetGraphBPrePathLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items/{baseItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/items/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItemCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists", + "ApiVersion": "v1.0", "Variants": [ "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionGroupSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteNotebookSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenotePageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/parentSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionGroupSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionPageParentSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/parentSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionParentNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentNotebook", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOnenoteSectionParentSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/parentSectionGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageAsSitePageWebPartCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCountAsSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/sitePage/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgGroupSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSitePermissionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStores/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStores/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -260887,32 +272579,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -260923,16 +272617,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -260943,32 +272638,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -260979,16 +272676,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -260999,16 +272697,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261019,16 +272718,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261039,16 +272739,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261059,484 +272760,515 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261547,32 +273279,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261583,16 +273317,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261603,32 +273338,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261639,16 +273376,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261659,16 +273397,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261679,16 +273418,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261699,16 +273439,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261719,78 +273460,83 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261801,32 +273547,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261837,16 +273585,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261857,32 +273606,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261893,16 +273644,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261913,16 +273665,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261933,16 +273686,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261953,16 +273707,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -261973,2484 +273728,2665 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetParentGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSiteTermStoreSetTermSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSubSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSubSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites", + "ApiVersion": "v1.0", "Variants": [ "List2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupSubSiteCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/sites/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels", + "ApiVersion": "v1.0", "Variants": [ "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/group", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/incomingChannels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/incomingChannels/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamIncomingChannelCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/incomingChannels/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/installedApps", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/installedApps/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/operations", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/operations/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamOperationCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/permissionGrants/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPermissionGrantCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/photo", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/groups/{group-id}/team/photo/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamPrimaryChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOfferShiftRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleOpenShiftCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSchedulingGroupCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleShiftCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleSwapShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffReasonCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamScheduleTimeOffRequestCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTagCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTagMemberCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/template", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/template", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264485,19 +276421,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThread", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264532,18 +276468,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThread", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264578,19 +276516,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264625,21 +276566,19 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadPost", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadPost", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264674,32 +276613,34 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadPost", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPost", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadPostAttachment", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264734,18 +276675,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadPostAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadPostAttachmentCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264780,19 +276723,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadPostAttachmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupThreadPostCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/$count", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.Read.All", @@ -264827,156 +276771,166 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupThreadPostCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupThreadPostInReplyToExtensionCount", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupTransitiveMember", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMembers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -265019,180 +276973,194 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupTransitiveMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/transitiveMembers/application", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/transitiveMembers/device", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMembers/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/transitiveMembers/orgContact", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/groups/{group-id}/transitiveMembers/user", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupTransitiveMemberCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMembers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -265235,117 +277203,124 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupTransitiveMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/application/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/device/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMembers/user/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberCountAsUser", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMembers/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -265380,72 +277355,78 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgGroupTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/transitiveMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.Read.All", @@ -265480,87 +277461,93 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Get-MgGroupTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgGroupTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/transitiveMemberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/apiConnectors", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/apiConnectors/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityApiConnectorCount", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityAuthenticationEventListener", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -265579,19 +277566,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityAuthenticationEventListener", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityAuthenticationEventListener", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -265610,18 +277597,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityAuthenticationEventListener", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityAuthenticationEventListenerCount", + "ApiReferenceLink": null, "Uri": "/identity/authenticationEventListeners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "EventListener.Read.All", @@ -265640,18 +277628,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityAuthenticationEventListenerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265670,19 +277660,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlow", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265701,32 +277691,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlow", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowApiConnectorConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowApiConnectorConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265745,75 +277737,81 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/{identityProvider-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProvider", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProvider", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProvider" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowIdentityProviderCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/identityProviders/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265832,19 +277830,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265863,18 +277861,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265893,19 +277893,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265924,19 +277925,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265955,18 +277956,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -265985,19 +277988,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266016,19 +278020,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageDefaultPageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266047,19 +278052,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266078,18 +278083,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguagePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserFlowLanguagePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266108,19 +278115,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266139,75 +278147,80 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowLanguageOverridePageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266226,19 +278239,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266257,18 +278270,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount", + "ApiReferenceLink": null, "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266287,19 +278302,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-1.0", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/getOrder", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -266318,47 +278334,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentOrder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-getorder?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityB2XUserFlowUserAttributeAssignmentUserAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}/userAttribute", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ConditionalAccess", @@ -266377,18 +278395,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReference", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ConditionalAccess", @@ -266407,138 +278426,149 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityConditionalAccessAuthenticationContextClassReferenceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphNamedLocation" }, { - "Uri": "/identity/conditionalAccess/namedLocations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphNamedLocation" }, { - "Uri": "/identity/conditionalAccess/namedLocations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessNamedLocationCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/namedLocations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/conditionalAccess/policies", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/conditionalAccess/policies/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessPolicyCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplate", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates/{conditionalAccessTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "Uri": "/identity/conditionalAccess/templates", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplate", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessTemplate" }, { - "Uri": "/identity/conditionalAccess/templates/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityConditionalAccessTemplateCount", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/templates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -266557,19 +278587,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityCustomAuthenticationExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -266588,18 +278618,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityCustomAuthenticationExtension", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityCustomAuthenticationExtensionCount", + "ApiReferenceLink": null, "Uri": "/identity/customAuthenticationExtensions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -266618,18 +278649,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityCustomAuthenticationExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266648,19 +278681,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266679,18 +278712,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266709,18 +278743,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266739,19 +278775,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266770,32 +278806,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266814,18 +278852,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266844,19 +278884,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewerCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/$count", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266875,19 +278916,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266906,19 +278948,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266937,18 +278979,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -266967,91 +279011,64 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsightCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", - "Permissions": [ - { - "Name": "AccessReview.Read.All", - "Description": "Read all access reviews", - "FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "AccessReview.ReadWrite.All", - "Description": "Manage all access reviews", - "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -267070,18 +279087,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphAccessReviewStage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -267100,19 +279118,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphAccessReviewStage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -267131,19 +279150,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -267162,18 +279182,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -267192,127 +279213,168 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [ + { + "Name": "AccessReview.Read.All", + "Description": "Read all access reviews", + "FullDescription": "Allows the app to read access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AccessReview.ReadWrite.All", + "Description": "Manage all access reviews", + "FullDescription": "Allows the app to read, update, delete and perform actions on access reviews, reviewers, decisions and settings in the organization, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267331,19 +279393,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267362,18 +279424,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267392,18 +279455,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267422,19 +279487,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267453,73 +279518,79 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -267538,19 +279609,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceAppConsentRequestUserConsentRequestCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267569,19 +279641,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267600,18 +279672,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflow", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267630,73 +279703,79 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267715,19 +279794,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267746,18 +279825,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267776,141 +279856,152 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedItemContainer", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedItemContainer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267929,19 +280020,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267960,18 +280051,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -267990,222 +280082,238 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createdBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/executionScope", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/lastModifiedBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs/{run-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowRun", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/runs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports/{taskReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/taskReports", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/userProcessingResults", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/{userProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268224,18 +280332,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScope", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/executionScope/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268254,74 +280364,79 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowExecutionScopeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268340,19 +280455,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268371,18 +280486,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRun", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceRun", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceRun" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268401,33 +280518,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268446,18 +280564,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268476,88 +280596,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268576,19 +280702,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268607,18 +280733,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268637,88 +280765,93 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268737,18 +280870,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowSetting", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/settings", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268767,32 +280901,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268811,18 +280947,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268841,19 +280979,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/{taskDefinition-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268872,19 +281011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268903,18 +281042,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/taskDefinitions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268933,32 +281073,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -268977,18 +281119,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269007,102 +281151,108 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269121,18 +281271,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReport", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReport" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269151,61 +281303,64 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskDefinition" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269224,18 +281379,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269254,88 +281411,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269354,19 +281517,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269385,18 +281548,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269415,183 +281579,196 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269610,18 +281787,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269640,88 +281819,93 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/taskProcessingResults", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269740,18 +281924,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultTaskProcessingResult", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269770,19 +281956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269801,18 +281987,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflowVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269831,129 +282019,138 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedBy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -269972,19 +282169,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -270003,18 +282200,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -270033,236 +282232,253 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskProcessingResult" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/task", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStageCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270281,19 +282497,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270312,32 +282528,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270356,59 +282574,64 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270427,19 +282650,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270458,32 +282681,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270502,87 +282727,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270601,19 +282833,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270632,32 +282864,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -270676,87 +282910,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270775,19 +283016,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270806,18 +283047,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270836,59 +283078,64 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270907,19 +283154,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270938,18 +283185,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -270968,87 +283216,94 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -271067,19 +283322,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -271098,18 +283353,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -271128,336 +283384,361 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreements", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementAcceptanceCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgIdentityGovernanceTermsOfUseAgreementFileVersionCount", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityProvider", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -271476,19 +283757,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityProvider", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityProvider", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -271507,18 +283788,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityProvider", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityProviderCount", + "ApiReferenceLink": null, "Uri": "/identity/identityProviders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -271537,18 +283819,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityProviderCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityUserFlowAttribute", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -271567,19 +283851,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityUserFlowAttribute", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityUserFlowAttribute", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -271598,18 +283882,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityUserFlowAttribute", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgIdentityUserFlowAttributeCount", + "ApiReferenceLink": null, "Uri": "/identity/userFlowAttributes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityUserFlow.Read.All", @@ -271628,44 +283913,48 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgIdentityUserFlowAttributeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInformationProtection", + "ApiReferenceLink": null, + "Uri": "/informationProtection", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/informationProtection/bitlocker", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInformationProtectionBitlocker", + "ApiReferenceLink": null, + "Uri": "/informationProtection/bitlocker", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlocker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBitlocker" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys/{bitlockerRecoveryKey-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -271684,19 +283973,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -271715,18 +284004,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionBitlockerRecoveryKey", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBitlockerRecoveryKey", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBitlockerRecoveryKey" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionBitlockerRecoveryKeyCount", + "ApiReferenceLink": null, "Uri": "/informationProtection/bitlocker/recoveryKeys/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "BitLockerKey.ReadBasic.All", @@ -271745,18 +284035,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionBitlockerRecoveryKeyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -271775,19 +284067,19 @@ "IsLeastPrivilege": true } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -271806,18 +284098,19 @@ "IsLeastPrivilege": true } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionThreatAssessmentRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgInformationProtectionThreatAssessmentRequestCount", + "ApiReferenceLink": null, "Uri": "/informationProtection/threatAssessmentRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "ThreatAssessment.ReadWrite.All", @@ -271836,181 +284129,195 @@ "IsLeastPrivilege": true } ], - "Module": "Identity.SignIns", - "Command": "Get-MgInformationProtectionThreatAssessmentRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInformationProtectionThreatAssessmentRequestResultCount", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationCount", + "ApiReferenceLink": null, + "Uri": "/invitations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsor", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsor", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgInvitationInvitedUserSponsorCount", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUserSponsors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-1.0", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -272037,19 +284344,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOauth2PermissionGrant", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-1.0", "Uri": "/oauth2PermissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -272076,18 +284383,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/oauth2PermissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -272114,18 +284422,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOauth2PermissionGrantCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOauth2PermissionGrantDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-1.0", "Uri": "/oauth2PermissionGrants/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Directory.Read.All", @@ -272152,18 +284461,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOauth2PermissionGrantDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-get?view=graph-rest-1.0", "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -272198,19 +284509,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0", "Uri": "/organization", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -272285,18 +284596,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganization", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBranding", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -272339,89 +284652,95 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBranding", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBranding", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBranding" }, { - "Uri": "/organization/{organization-id}/branding/backgroundImage", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingBackgroundImage", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/backgroundImage", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/bannerLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/bannerLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/customCSS", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/customCSS", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/favicon", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/favicon", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/headerLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/headerLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -272464,19 +284783,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -272519,18 +284838,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalization", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationBackgroundImage", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272549,19 +284870,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272580,19 +284902,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationCount", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/$count", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "User.Read", @@ -272635,19 +284958,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272666,19 +284990,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272697,19 +285022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272728,19 +285054,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272759,19 +285086,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationBrandingLocalizationSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.Read.All", @@ -272790,61 +285118,65 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationBrandingLocalizationSquareLogoDark", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogoDark", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationBrandingSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogoDark", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/getByIds", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgOrganizationById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/organization/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -272863,19 +285195,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -272894,18 +285226,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOrganizationCertificateBasedAuthConfiguration", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationCount", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Organization.Read.All", @@ -272924,19 +285258,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgOrganizationCertificateBasedAuthConfigurationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgOrganizationCount", + "ApiReferenceLink": null, "Uri": "/organization/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -273011,238 +285345,256 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgOrganizationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/organization/{organization-id}/extensions/$count", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgOrganizationExtensionCount", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/getMemberGroups", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgOrganizationMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", + "Uri": "/organization/{organization-id}/getMemberGroups", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/getMemberObjects", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgOrganizationMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/organization/{organization-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/room", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/room", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/room", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/room", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoomList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoomList" }, { - "Uri": "/places/roomList", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/roomList", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoomList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoomList" }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/rooms", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/rooms/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceAsRoomListRoomCount", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceCount", + "ApiReferenceLink": null, + "Uri": "/places/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/room/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceCountAsRoom", + "ApiReferenceLink": null, + "Uri": "/places/room/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/roomList/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlaceCountAsRoomList", + "ApiReferenceLink": null, + "Uri": "/places/roomList/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPlanner", + "ApiReferenceLink": null, + "Uri": "/planner", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlanner", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlanner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273293,19 +285645,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerBucket", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273356,18 +285708,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerBucket", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerBucketCount", + "ApiReferenceLink": null, "Uri": "/planner/buckets/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273418,18 +285771,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerBucketCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerBucketTask", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273480,18 +285834,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerBucketTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273542,19 +285898,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerPlan", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273605,18 +285961,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlanBucket", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/buckets", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273667,18 +286024,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerPlanBucket", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucket" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlanCount", + "ApiReferenceLink": null, "Uri": "/planner/plans/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273729,18 +286087,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerPlanCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlanDetail", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273791,19 +286151,83 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphPlannerPlanDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerPlanTask", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], "Module": "Planner", - "Command": "Get-MgPlannerPlanDetail", + "Permissions": [ + { + "Name": "Tasks.Read", + "Description": "Read your tasks and task lists", + "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "Tasks.Read.All", + "Description": "Read all users’ tasks and tasklist", + "FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "Tasks.ReadWrite", + "Description": "Create, read, update, and delete your tasks and task lists", + "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Tasks.ReadWrite.All", + "Description": "Read and write all users’ tasks and tasklists", + "FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}/tasks", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273854,18 +286278,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerPlanTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273916,19 +286341,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -273979,81 +286405,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", - "Permissions": [ - { - "Name": "Tasks.Read", - "Description": "Read your tasks and task lists", - "FullDescription": "Allows the app to read your tasks and task lists, including any shared with you. Doesn't include permission to create, delete, or update anything.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "Tasks.Read.All", - "Description": "Read all users’ tasks and tasklist", - "FullDescription": "Allows the app to read all users’ tasks and task lists in your organization, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Tasks.ReadWrite", - "Description": "Create, read, update, and delete your tasks and task lists", - "FullDescription": "Allows the app to create, read, update, and delete your tasks and task lists, including any shared with you.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Tasks.ReadWrite.All", - "Description": "Read and write all users’ tasks and tasklists", - "FullDescription": "Allows the app to create, read, update and delete all users’ tasks and task lists in your organization, without a signed-in user", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Planner", - "Command": "Get-MgPlannerTaskAssignedToTaskBoardFormat", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -274104,19 +286469,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTaskBucketTaskBoardFormat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTaskCount", + "ApiReferenceLink": null, "Uri": "/planner/tasks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -274167,18 +286532,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTaskCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTaskDetail", + "ApiReferenceLink": null, "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -274229,19 +286596,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -274292,19 +286660,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgPlannerTaskProgressTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274331,19 +286700,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274370,59 +286739,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyActivityBasedTimeoutPolicyApplyToCount", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyActivityBasedTimeoutPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274449,18 +286822,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyActivityBasedTimeoutPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274495,18 +286869,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAdminConsentRequestPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274533,19 +286909,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAppManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274572,32 +286948,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAppManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAppManagementPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAppManagementPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Application.Read.All", @@ -274632,18 +287010,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAppManagementPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAppManagementPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Application.Read.All", @@ -274678,19 +287058,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAppManagementPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAppManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274717,18 +287097,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAppManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274747,71 +287128,77 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAuthenticationFlowPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274838,19 +287225,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274877,59 +287264,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAuthenticationStrengthPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyAuthenticationStrengthPolicyCombinationConfigurationCount", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAuthenticationStrengthPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274956,18 +287347,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAuthenticationStrengthPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyAuthorizationPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -274986,18 +287378,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyAuthorizationPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275024,19 +287418,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyClaimMappingPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275063,32 +287457,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyClaimMappingPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyClaimMappingPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyClaimMappingPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275131,18 +287527,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyClaimMappingPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyClaimMappingPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275185,19 +287583,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyClaimMappingPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyClaimMappingPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275224,31 +287622,33 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyClaimMappingPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/conditionalAccessPolicies/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyConditionalAccessPolicyCount", + "ApiReferenceLink": null, + "Uri": "/policies/conditionalAccessPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275267,18 +287667,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275297,18 +287698,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyDefault", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275327,19 +287730,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275358,18 +287761,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyPartner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerCount", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275388,18 +287792,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275418,19 +287824,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.Read.All", @@ -275449,44 +287855,47 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplate", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275513,18 +287922,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyDefaultAppManagementPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgPolicyDeviceRegistrationPolicy", + "ApiReferenceLink": null, "Uri": "/policies/deviceRegistrationPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.DeviceConfiguration", @@ -275551,98 +287961,106 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyDeviceRegistrationPolicy", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceRegistrationPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyApplyToCount", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyFeatureRolloutPolicyCount", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275669,19 +288087,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275708,32 +288126,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275776,18 +288196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275830,19 +288252,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -275869,31 +288291,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyHomeRealmDiscoveryPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -275912,19 +288337,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -275943,18 +288368,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -275973,32 +288399,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -276017,18 +288445,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicyExclude", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicyExcludeCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -276047,33 +288477,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicyExcludeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -276092,18 +288523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicyInclude", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyPermissionGrantPolicyIncludeCount", + "ApiReferenceLink": null, "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.PermissionGrant", @@ -276122,19 +288555,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyPermissionGrantPolicyIncludeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276177,19 +288611,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276232,18 +288666,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276286,19 +288722,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276341,18 +288777,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyAssignmentCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicyAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276395,32 +288832,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}/policy", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276463,32 +288902,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276531,18 +288972,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRuleCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276585,19 +289028,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyEffectiveRuleCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276640,19 +289084,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyRule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276695,18 +289139,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyRule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyRoleManagementPolicyRuleCount", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.Read.Directory", @@ -276749,19 +289195,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyRoleManagementPolicyRuleCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -276788,19 +289235,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenIssuancePolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -276827,32 +289274,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenIssuancePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyTokenIssuancePolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenIssuancePolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -276895,18 +289344,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenIssuancePolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenIssuancePolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -276949,19 +289400,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenIssuancePolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenIssuancePolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -276988,18 +289439,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenIssuancePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -277026,19 +289479,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenLifetimePolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -277065,32 +289518,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPolicyTokenLifetimePolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenLifetimePolicyApplyTo", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -277133,18 +289588,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenLifetimePolicyApplyTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenLifetimePolicyApplyToCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}/appliesTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -277187,19 +289644,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenLifetimePolicyApplyToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPolicyTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/policies/tokenLifetimePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -277226,31 +289683,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgPolicyTokenLifetimePolicyCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrint", + "ApiReferenceLink": null, + "Uri": "/print", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintConnector", + "ApiReferenceLink": null, "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -277269,19 +289729,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintConnector", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintConnector", + "ApiReferenceLink": null, "Uri": "/print/connectors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -277300,18 +289760,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintConnector", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintConnectorCount", + "ApiReferenceLink": null, "Uri": "/print/connectors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -277330,18 +289791,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintConnectorCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintOperation", + "ApiReferenceLink": null, "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Create", @@ -277368,45 +289831,48 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintOperation" }, { - "Uri": "/print/operations", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { - "Uri": "/print/operations/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintOperationCount", + "ApiReferenceLink": null, + "Uri": "/print/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -277457,19 +289923,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinter", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -277496,32 +289962,34 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinter", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { - "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterConnector", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterConnector", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/connectors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -277540,18 +290008,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterConnector", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintConnector" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterConnectorCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/connectors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintConnector.Read.All", @@ -277570,19 +290040,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterConnectorCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterCount", + "ApiReferenceLink": null, "Uri": "/print/printers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -277609,18 +290079,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -277687,19 +290159,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -277766,18 +290238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterJob", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterJobCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -277844,19 +290318,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterJobCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Read", @@ -277891,32 +290366,34 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterJobDocument", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterJobDocumentContent", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Read", @@ -277951,141 +290428,109 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterJobDocumentContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobDocumentCount", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterJobTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/printers/{printer-id}/shares/{printerShare-id}", - "Permissions": [ - { - "Name": "PrinterShare.ReadBasic.All", - "Description": "Read basic information about printer shares", - "FullDescription": "Allows the application to read basic information about printer shares on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "PrinterShare.ReadWrite.All", - "Description": "Read and update printer shares", - "FullDescription": "Allows the application to read and update printer shares on your behalf. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "PrinterShare.Read.All", - "Description": "Read printer shares", - "FullDescription": "Allows the application to read printer shares on your behalf. ", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/shares", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -278112,18 +290557,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", + "OutputType": "IMicrosoftGraphPrinterShare" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/shares", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/shares/$count", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -278150,19 +290596,60 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", + "OutputType": "IMicrosoftGraphPrinterShare" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterShareCount", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/shares/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [ + { + "Name": "PrinterShare.ReadBasic.All", + "Description": "Read basic information about printer shares", + "FullDescription": "Allows the application to read basic information about printer shares on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "PrinterShare.ReadWrite.All", + "Description": "Read and update printer shares", + "FullDescription": "Allows the application to read and update printer shares on your behalf. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "PrinterShare.Read.All", + "Description": "Read printer shares", + "FullDescription": "Allows the application to read printer shares on your behalf. ", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -278189,19 +290676,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterTaskTrigger", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -278228,18 +290715,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterTaskTrigger", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintPrinterTaskTriggerCount", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -278266,33 +290755,35 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintPrinterTaskTriggerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintPrinterTaskTriggerDefinition", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}/definition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintService", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -278463,19 +290954,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintService", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintService", + "ApiReferenceLink": null, "Uri": "/print/services", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -278646,18 +291137,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintService", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintService" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintServiceCount", + "ApiReferenceLink": null, "Uri": "/print/services/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -278828,18 +291320,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintServiceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintServiceEndpoint", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279010,19 +291504,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintServiceEndpoint", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintServiceEndpoint", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279193,18 +291687,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintServiceEndpoint", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintServiceEndpointCount", + "ApiReferenceLink": null, "Uri": "/print/services/{printService-id}/endpoints/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279375,19 +291871,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintServiceEndpointCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/print/shares/{printerShare-id}", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -279414,19 +291911,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShare", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinterShare" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShare", + "ApiReferenceLink": null, "Uri": "/print/shares", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -279453,18 +291950,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShare", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinterShare" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedGroup", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279483,18 +291981,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279513,18 +292012,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedGroupByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedGroupCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279541,48 +292042,50 @@ "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false - } - ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" + } ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareAllowedGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/{group-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedUser", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279601,18 +292104,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedUserByRef", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279631,18 +292135,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedUserByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareAllowedUserCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/allowedUsers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.Read.All", @@ -279661,60 +292167,63 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareAllowedUserCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareAllowedUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareAllowedUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareCount", + "ApiReferenceLink": null, "Uri": "/print/shares/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrinterShare.ReadBasic.All", @@ -279741,18 +292250,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279819,19 +292330,19 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279898,18 +292409,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareJob", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintShareJobCount", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadBasic", @@ -279976,143 +292489,153 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintShareJobCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobDocumentCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/definition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintShareJobTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrintSharePrinter", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/printer", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Read.All", @@ -280139,116 +292662,124 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Get-MgPrintSharePrinter", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrinter" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTaskCount", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrintTaskDefinitionTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}/trigger", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrivacySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -280267,19 +292798,19 @@ "IsLeastPrivilege": false } ], - "Module": "Compliance", - "Command": "Get-MgPrivacySubjectRightsRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrivacySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -280298,182 +292829,195 @@ "IsLeastPrivilege": false } ], - "Module": "Compliance", - "Command": "Get-MgPrivacySubjectRightsRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestApproverServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrivacySubjectRightsRequestCount", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -280492,32 +293036,34 @@ "IsLeastPrivilege": false } ], - "Module": "Compliance", - "Command": "Get-MgPrivacySubjectRightsRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -280536,18 +293082,20 @@ "IsLeastPrivilege": false } ], - "Module": "Compliance", - "Command": "Get-MgPrivacySubjectRightsRequestNote", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgPrivacySubjectRightsRequestNoteCount", + "ApiReferenceLink": null, "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Compliance", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -280566,46 +293114,49 @@ "IsLeastPrivilege": false } ], - "Module": "Compliance", - "Command": "Get-MgPrivacySubjectRightsRequestNoteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgPrivacySubjectRightsRequestTeam", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/team", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/reports/authenticationMethods", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -280624,19 +293175,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -280655,18 +293206,19 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetail", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetailCount", + "ApiReferenceLink": null, "Uri": "/reports/authenticationMethods/userRegistrationDetails/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Reports", "Permissions": [ { "Name": "AuditLog.Read.All", @@ -280685,1634 +293237,1751 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Get-MgReportAuthenticationMethodUserRegistrationDetailCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageByPrinter", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/dailyPrintUsageByPrinter/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByPrinter/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser/{printUsageByUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageByUser", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/dailyPrintUsageByUser/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDailyPrintUsageByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/dailyPrintUsageByUser/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/deviceConfigurationDeviceActivity", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDeviceConfigurationDeviceActivity", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationdeviceactivity?view=graph-rest-1.0", + "Uri": "/reports/deviceConfigurationDeviceActivity", + "ApiVersion": "v1.0", "Variants": [ "Device" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationdeviceactivity?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/deviceConfigurationUserActivity", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportDeviceConfigurationUserActivity", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationuseractivity?view=graph-rest-1.0", + "Uri": "/reports/deviceConfigurationUserActivity", + "ApiVersion": "v1.0", "Variants": [ "Device" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-reportroot-deviceconfigurationuseractivity?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getEmailActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getEmailActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailactivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailAppUsageAppUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageappsusercounts?view=graph-rest-1.0", + "Uri": "/reports/getEmailAppUsageAppsUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageappsusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailAppUsageUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageusercounts?view=graph-rest-1.0", + "Uri": "/reports/getEmailAppUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailAppUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getEmailAppUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportEmailAppUsageVersionUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageversionsusercounts?view=graph-rest-1.0", + "Uri": "/reports/getEmailAppUsageVersionsUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getemailappusageversionsusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportGroupArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-1.0", + "Uri": "/reports/getGroupArchivedPrintJobs(groupId='{groupId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getgrouparchivedprintjobs?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportM365AppPlatformUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-1.0", + "Uri": "/reports/getM365AppPlatformUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appplatformusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getM365AppUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportM365AppUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-1.0", + "Uri": "/reports/getM365AppUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getm365appusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getM365AppUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportM365AppUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getM365AppUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageDetail(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMailboxUsageDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagedetail?view=graph-rest-1.0", + "Uri": "/reports/getMailboxUsageDetail(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagedetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMailboxUsageMailboxCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagemailboxcounts?view=graph-rest-1.0", + "Uri": "/reports/getMailboxUsageMailboxCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagemailboxcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMailboxUsageQuotaStatusMailboxCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagequotastatusmailboxcounts?view=graph-rest-1.0", + "Uri": "/reports/getMailboxUsageQuotaStatusMailboxCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagequotastatusmailboxcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getMailboxUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMailboxUsageStorage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagestorage?view=graph-rest-1.0", + "Uri": "/reports/getMailboxUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getmailboxusagestorage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentFailureDetails", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportManagedDeviceEnrollmentFailureDetail", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentFailureDetails", + "ApiVersion": "v1.0", "Variants": [ "Detail", "Detail1", "DetailViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/managedDeviceEnrollmentTopFailures", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportManagedDeviceEnrollmentTopFailure", + "ApiReferenceLink": null, + "Uri": "/reports/managedDeviceEnrollmentTopFailures", + "ApiVersion": "v1.0", "Variants": [ "Top", "Top1", "TopViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter/{printUsageByPrinter-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageByPrinter", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinter", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByPrinter", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByPrinter" }, { - "Uri": "/reports/monthlyPrintUsageByPrinter/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByPrinterCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByPrinter/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser/{printUsageByUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageByUser", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUser", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintUsageByUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintUsageByUser" }, { - "Uri": "/reports/monthlyPrintUsageByUser/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportMonthlyPrintUsageByUserCount", + "ApiReferenceLink": null, + "Uri": "/reports/monthlyPrintUsageByUser/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationCounts", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ActivationCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationcounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ActivationCounts", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationsUserCounts", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ActivationUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsusercounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ActivationsUserCounts", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActivationsUserDetail", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ActivationUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ActivationsUserDetail", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activationsuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ActiveUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeusercounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ActiveUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ActiveUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ActiveUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365activeuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365GroupsActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitydetail?view=graph-rest-1.0", + "Uri": "/reports/getOffice365GroupsActivityDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitydetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityFileCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivityfilecounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365GroupsActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivityfilecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityGroupCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitygroupcounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365GroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitygroupcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365GroupActivityStorage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitystorage?view=graph-rest-1.0", + "Uri": "/reports/getOffice365GroupsActivityStorage(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365groupsactivitystorage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOffice365ServiceUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365servicesusercounts?view=graph-rest-1.0", + "Uri": "/reports/getOffice365ServicesUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getoffice365servicesusercounts?view=graph-rest-1.0" - }, - { - "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", - "Permissions": [], "Module": "Reports", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveActivityFileCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityfilecounts?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityfilecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveActivityUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveactivityuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveUsageAccountCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountcounts?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveUsageAccountCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveUsageAccountDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountdetail?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveUsageAccountDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusageaccountdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveUsageFileCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagefilecounts?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveUsageFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagefilecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportOneDriveUsageStorage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagestorage?view=graph-rest-1.0", + "Uri": "/reports/getOneDriveUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getonedriveusagestorage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartner", + "ApiReferenceLink": null, + "Uri": "/reports/partners", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartners", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartners" }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBilling", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/manifests", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/manifests/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingManifestCount", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/operations", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/operations/$count", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingOperationCount", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingReconciliation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportPrinterArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-1.0", + "Uri": "/reports/getPrinterArchivedPrintJobs(printerId='{printerId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getprinterarchivedprintjobs?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportRelyingPartyDetailedSummary", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-1.0", + "Uri": "/reports/getRelyingPartyDetailedSummary(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getrelyingpartydetailedsummary?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphRelyingPartyDetailedSummary" }, { - "Uri": "/reports/security", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSecurity", + "ApiReferenceLink": null, + "Uri": "/reports/security", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/security/getAttackSimulationRepeatOffenders", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationRepeatOffender", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-1.0", + "Uri": "/reports/security/getAttackSimulationRepeatOffenders", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationrepeatoffenders?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationRepeatOffender" }, { - "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationTrainingUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-1.0", + "Uri": "/reports/security/getAttackSimulationTrainingUserCoverage", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationtrainingusercoverage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationTrainingUserCoverage" }, { - "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSecurityAttackSimulationUserCoverage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-1.0", + "Uri": "/reports/security/getAttackSimulationSimulationUserCoverage", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityreportsroot-getattacksimulationsimulationusercoverage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationUserCoverage" }, { - "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointActivityFileCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityfilecounts?view=graph-rest-1.0", + "Uri": "/reports/getSharePointActivityFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityfilecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityPages(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointActivityPage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivitypages?view=graph-rest-1.0", + "Uri": "/reports/getSharePointActivityPages(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivitypages?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSharePointActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointActivityUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getSharePointActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointactivityuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagedetail?view=graph-rest-1.0", + "Uri": "/reports/getSharePointSiteUsageDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagedetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageFileCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagefilecounts?view=graph-rest-1.0", + "Uri": "/reports/getSharePointSiteUsageFileCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagefilecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointSiteUsagePage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagepages?view=graph-rest-1.0", + "Uri": "/reports/getSharePointSiteUsagePages(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagepages?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageSiteCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagesitecounts?view=graph-rest-1.0", + "Uri": "/reports/getSharePointSiteUsageSiteCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagesitecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSharePointSiteUsageStorage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagestorage?view=graph-rest-1.0", + "Uri": "/reports/getSharePointSiteUsageStorage(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getsharepointsiteusagestorage?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessActivityUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessactivityuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageDistributionUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusagedistributionusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusagedistributionusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessDeviceUsageUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessDeviceUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessdeviceusageuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessOrganizerActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityMinuteCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityminutecounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessOrganizerActivityMinuteCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityminutecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessOrganizerActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessOrganizerActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessorganizeractivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessParticipantActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityMinuteCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityminutecounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessParticipantActivityMinuteCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityminutecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessParticipantActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessParticipantActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinessparticipantactivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityMinuteCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityminutecounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityMinuteCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityminutecounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportSkypeForBusinessPeerToPeerActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getSkypeForBusinessPeerToPeerActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getskypeforbusinesspeertopeeractivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsTeamActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamActivityDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamActivityDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsTeamActivityDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamActivityDistributionCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitydistributioncounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsTeamActivityDistributionCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamactivitydistributioncounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsTeamCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamcounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsTeamCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsteamcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageDistributionUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusagedistributionusercounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusagedistributionusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusageusercounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsdeviceusageusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamDeviceUsageUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsDeviceUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamUserActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsUserActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamUserActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getTeamsUserActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getteamsuseractivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportTeamUserActivityUserDetail", + "ApiReferenceLink": null, + "Uri": "/reports/getTeamsUserActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportUserArchivedPrintJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-1.0", + "Uri": "/reports/getUserArchivedPrintJobs(userId='{userId}',startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphArchivedPrintJob", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reports-getuserarchivedprintjobs?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphArchivedPrintJob" }, { - "Uri": "/reports/getYammerActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerActivityUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityusercounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerActivityUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerActivityUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerActivityUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getYammerActivityUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammeractivityuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageDistributionUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusagedistributionusercounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerDeviceUsageDistributionUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusagedistributionusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageUserCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageusercounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerDeviceUsageUserCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageusercounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerDeviceUsageUserDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageuserdetail?view=graph-rest-1.0", + "Uri": "/reports/getYammerDeviceUsageUserDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammerdeviceusageuserdetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerGroupActivityCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitycounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerGroupsActivityCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitycounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerGroupActivityDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitydetail?view=graph-rest-1.0", + "Uri": "/reports/getYammerGroupsActivityDetail(date={date})", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitydetail?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgReportYammerGroupActivityGroupCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitygroupcounts?view=graph-rest-1.0", + "Uri": "/reports/getYammerGroupsActivityGroupCounts(period='{period}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/reportroot-getyammergroupsactivitygroupcounts?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskDetections", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskDetections/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskDetectionCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyServicePrincipal", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -282331,19 +295000,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyServicePrincipal", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyServicePrincipal", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -282362,18 +295031,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyServicePrincipalCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -282392,32 +295062,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyServicePrincipalCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyServicePrincipalHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -282436,18 +295108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyServicePrincipalHistory", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyServicePrincipalHistoryCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyServicePrincipal.Read.All", @@ -282466,59 +295140,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyServicePrincipalHistoryCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRiskyUserCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyUserHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -282537,19 +295215,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyUserHistory", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyUserHistory", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -282568,18 +295246,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyUserHistory", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRiskyUserHistoryCount", + "ApiReferenceLink": null, "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityRiskyUser.Read.All", @@ -282598,19 +295278,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgRiskyUserHistoryCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -282645,31 +295325,34 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Get-MgRoleManagement", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleManagement", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleManagement" }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282696,19 +295379,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespace", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282735,18 +295418,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespace", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282773,18 +295457,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282811,19 +295497,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282850,18 +295536,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceAction", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282888,19 +295576,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryResourceNamespaceResourceActionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282943,19 +295632,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -282998,32 +295687,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -283066,60 +295757,65 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283162,19 +295858,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283217,46 +295913,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentSchedules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283299,32 +295998,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283367,19 +296069,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283422,46 +296124,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283504,74 +296209,80 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283614,19 +296325,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283669,46 +296380,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -283751,143 +296465,95 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleAssignmentScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [ - { - "Name": "RoleManagement.Read.Directory", - "Description": "Read all directory RBAC settings", - "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "RoleManagement.ReadWrite.Directory", - "Description": "Read and write all directory RBAC settings", - "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "RoleManagement.Read.All", - "Description": "Read role management data for all RBAC providers", - "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.ReadWrite.All", - "Description": "Read and write directory data", - "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Directory.Read.All", - "Description": "Read directory data", - "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/directory/roleDefinitions", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -283930,18 +296596,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/directory/roleDefinitions/$count", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -283984,59 +296651,119 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [ + { + "Name": "RoleManagement.Read.Directory", + "Description": "Read all directory RBAC settings", + "FullDescription": "Allows the app to read the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "RoleManagement.ReadWrite.Directory", + "Description": "Read and write all directory RBAC settings", + "FullDescription": "Allows the app to read and manage the role-based access control (RBAC) settings for your company's directory, without a signed-in user. This includes instantiating directory roles and managing directory role membership, and reading directory role templates, directory roles and memberships.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "RoleManagement.Read.All", + "Description": "Read role management data for all RBAC providers", + "FullDescription": "Allows the app to read role-based access control (RBAC) settings for all RBAC providers without a signed-in user. This includes reading role definitions and role assignments.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.ReadWrite.All", + "Description": "Read and write directory data", + "FullDescription": "Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Directory.Read.All", + "Description": "Read directory data", + "FullDescription": "Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFromCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284079,19 +296806,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284134,32 +296861,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedule", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilitySchedules/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284202,32 +296931,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284270,19 +297002,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284325,32 +297057,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284393,74 +297127,80 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284503,19 +297243,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284558,32 +297298,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -284626,182 +297368,196 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementDirectoryRoleEligibilityScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementResourceNamespaceResourceActionCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -284860,19 +297616,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -284931,32 +297687,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -285015,404 +297773,434 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentSchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestActivatedUsing", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/activatedUsing", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -285519,19 +298307,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -285638,18 +298426,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinition", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionCount", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleDefinitions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -285756,361 +298545,388 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstancePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilitySchedulePrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestCount", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestDirectoryScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/directoryScope", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestPrincipal", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/principal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequestTargetSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/targetSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}/roleDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-1.0", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -286129,19 +298945,19 @@ "IsLeastPrivilege": true } ], - "Module": "SchemaExtensions", - "Command": "Get-MgSchemaExtension", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSchemaExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-1.0", "Uri": "/schemaExtensions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -286160,18 +298976,19 @@ "IsLeastPrivilege": true } ], - "Module": "SchemaExtensions", - "Command": "Get-MgSchemaExtension", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSchemaExtension" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSchemaExtensionCount", + "ApiReferenceLink": null, "Uri": "/schemaExtensions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "User.Read", @@ -286190,18 +299007,20 @@ "IsLeastPrivilege": true } ], - "Module": "SchemaExtensions", - "Command": "Get-MgSchemaExtensionCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchAcronym", + "ApiReferenceLink": null, "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286220,19 +299039,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchAcronym", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchAcronym" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchAcronym", + "ApiReferenceLink": null, "Uri": "/search/acronyms", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286251,18 +299070,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchAcronym", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchAcronym" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchAcronymCount", + "ApiReferenceLink": null, "Uri": "/search/acronyms/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286281,18 +299101,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchAcronymCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchBookmark", + "ApiReferenceLink": null, "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286311,19 +299133,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchBookmark", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchBookmark", + "ApiReferenceLink": null, "Uri": "/search/bookmarks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286342,18 +299164,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchBookmark", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchBookmarkCount", + "ApiReferenceLink": null, "Uri": "/search/bookmarks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286372,31 +299195,34 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchBookmarkCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/search", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSearchEntity", + "ApiReferenceLink": null, + "Uri": "/search", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchEntity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchEntity" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchQna", + "ApiReferenceLink": null, "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286415,19 +299241,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchQna", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchQna", + "ApiReferenceLink": null, "Uri": "/search/qnas", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286446,18 +299272,19 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchQna", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSearchQnaCount", + "ApiReferenceLink": null, "Uri": "/search/qnas/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -286476,18 +299303,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Get-MgSearchQnaCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlert", + "ApiReferenceLink": null, "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -286506,19 +299335,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlert", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlert", + "ApiReferenceLink": null, "Uri": "/security/alerts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -286537,18 +299366,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlert", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlertCount", + "ApiReferenceLink": null, "Uri": "/security/alerts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -286567,18 +299397,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlertCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlertV2", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -286597,19 +299429,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlertV2", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlertV2", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -286628,18 +299460,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlertV2", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAlert" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityAlertV2Count", + "ApiReferenceLink": null, "Uri": "/security/alerts_v2/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get1" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityAlert.Read.All", @@ -286658,522 +299491,561 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityAlertV2Count", - "Variants": [ - "Get1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/attackSimulation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationRoot" }, { - "Uri": "/security/attackSimulation/simulations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationAutomationRunCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulations/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationEndUserNotificationDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLandingPageDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/loginPages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/loginPages/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationLoginPageCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/operations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/operations/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationOperationCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPayload", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/payloads", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPayload", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/payloads/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationPayloadCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTraining", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTraining", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainings/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityAttackSimulationTrainingLanguageDetailCount", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCasesRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287192,19 +300064,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287223,18 +300095,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287253,18 +300126,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287283,19 +300158,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287314,18 +300189,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287344,19 +300221,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/lastIndexOperation", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287375,33 +300253,34 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianLastIndexOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287420,18 +300299,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287450,47 +300331,49 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianSiteSourceSite", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}/site", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287509,18 +300392,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287539,74 +300424,78 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroup", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSourceGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287625,18 +300514,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287655,19 +300546,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseCustodianUserSourceCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287686,74 +300578,78 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceLastIndexOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/lastIndexOperation", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryIndexOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287772,18 +300668,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseOperation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseOperationCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287802,19 +300700,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseOperationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287833,19 +300732,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287864,18 +300763,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSet", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287894,19 +300795,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287925,19 +300827,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287956,18 +300858,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQuery", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -287986,19 +300890,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseReviewSetQueryCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288017,19 +300922,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288048,73 +300953,79 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAdditionalSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchAddToReviewSetOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/addToReviewSetOperation", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryAddToReviewSetOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288133,60 +301044,64 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/{dataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchCustodianSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/custodianSources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/lastEstimateStatisticsOperation", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288205,60 +301120,64 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchLastEstimateStatisticsOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryEstimateOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseSearchNoncustodialSourceCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/noncustodialSources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288277,19 +301196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseSetting", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288308,19 +301228,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288339,59 +301259,64 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/{ediscoveryReviewTag-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagChildTagCount", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/childTags/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityCaseEdiscoveryCaseTagCount", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -288410,33 +301335,35 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityCaseEdiscoveryCaseTagCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityCaseEdiscoveryCaseTagParent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}/parent", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityIncident", + "ApiReferenceLink": null, "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -288455,19 +301382,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityIncident", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityIncident" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityIncident", + "ApiReferenceLink": null, "Uri": "/security/incidents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -288486,73 +301413,78 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityIncident", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityIncidentAlert", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/incidents/{incident-id}/alerts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityIncidentAlert", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityIncidentAlertCommentCount", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/incidents/{incident-id}/alerts/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityIncidentAlertCount", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityIncidentCount", + "ApiReferenceLink": null, "Uri": "/security/incidents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityIncident.Read.All", @@ -288571,286 +301503,308 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityIncidentCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityLabelsRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/authorities", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/authorities/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelAuthorityCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategoryCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCategorySubcategoryCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/citations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/labels/citations/$count", - "Permissions": [], "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelCitationCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/departments", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/departments/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelDepartmentCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/filePlanReferences", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/filePlanReferences/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelFilePlanReferenceCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/retentionEventType", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityLabelRetentionLabel", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -288869,19 +301823,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityLabelRetentionLabel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityLabelRetentionLabel", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -288900,18 +301854,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityLabelRetentionLabel", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityLabelRetentionLabelCount", + "ApiReferenceLink": null, "Uri": "/security/labels/retentionLabels/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -288930,143 +301885,154 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityLabelRetentionLabelCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorAuthorityTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/authorityTemplate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorCategoryTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/categoryTemplate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorCitationTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/citationTemplate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorDepartmentTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/departmentTemplate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDescriptorFilePlanReferenceTemplate", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors/filePlanReferenceTemplate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityLabelRetentionLabelDispositionReviewStageCount", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScore", + "ApiReferenceLink": null, "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289085,19 +302051,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScore", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScore" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScore", + "ApiReferenceLink": null, "Uri": "/security/secureScores", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289116,18 +302082,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScore", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScore" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289146,19 +302114,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScoreControlProfile", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289177,18 +302145,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScoreControlProfile", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScoreControlProfileCount", + "ApiReferenceLink": null, "Uri": "/security/secureScoreControlProfiles/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289207,18 +302176,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScoreControlProfileCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySecureScoreCount", + "ApiReferenceLink": null, "Uri": "/security/secureScores/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "SecurityEvents.Read.All", @@ -289237,18 +302207,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySecureScoreCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289267,19 +302239,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequest", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289298,182 +302270,195 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApprover", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestApproverServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaborator", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestCollaboratorServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequestCount", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289492,18 +302477,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequestCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequestFinalAttachment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0", "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalAttachment", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289522,47 +302509,49 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequestFinalAttachment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalattachment?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestFinalReport", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0", + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/getFinalReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subjectrightsrequest-getfinalreport?view=graph-rest-1.0" + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289581,18 +302570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequestNote", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthoredNote" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecuritySubjectRightsRequestNoteCount", + "ApiReferenceLink": null, "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "SubjectRightsRequest.Read.All", @@ -289611,630 +302602,666 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecuritySubjectRightsRequestNoteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecuritySubjectRightsRequestTeam", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/team", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityThreatIntelligence", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articles/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/articleIndicators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicatorArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}/artifact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceArticleIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/{hostPair-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostChildHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/childHostPairs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostComponents", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostComponents/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponentCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostComponentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostCookies", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostCookies/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookieCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCookieHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPairs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairChildHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/childHost", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostPairs/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPairParentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}/parentHost", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/{hostPair-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostParentHostPairCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/parentHostPairs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDns", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/{passiveDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDns", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/{passiveDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverse", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPassiveDnsReverseCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/passiveDnsReverse/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostPorts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostPorts/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostPortMostRecentSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}/mostRecentSslCertificate", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostReputation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -290243,792 +303270,858 @@ "GetViaIdentity1", "GetViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificateCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/sslCertificates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSslCertificateHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/{subdomain-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostSubdomainCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/subdomains/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/hostTrackers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTrackerCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/trackers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostTrackerHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/whois", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceHostWhoi", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/whois", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/intelProfiles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/intelProfiles/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceIntelProfileIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}/indicators/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/artifact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligencePassiveDnsRecordParentHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}/parentHost", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicatorArtifact", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}/artifact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceProfileIndicatorCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/sslCertificates", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/sslCertificates/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/{host-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSslCertificateRelatedHostCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}/relatedHosts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/subdomains", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/subdomains/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomainCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceSubdomainHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/{article-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityArticleCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/articles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityComponentCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceVulnerabilityCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisHistoryRecordHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistory", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/{whoisHistoryRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistory", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHistoryCount", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/history/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityThreatIntelligenceWhoisRecordHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}/host", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityTriggersRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291047,19 +304140,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerRetentionEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291078,18 +304171,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerRetentionEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerRetentionEventCount", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291108,18 +304202,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerRetentionEventCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}/retentionEventType", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291138,32 +304234,34 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerRetentionEventType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291182,19 +304280,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerTypeRetentionEventType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291213,18 +304311,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerTypeRetentionEventType", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSecurityTriggerTypeRetentionEventTypeCount", + "ApiReferenceLink": null, "Uri": "/security/triggerTypes/retentionEventTypes/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Security", "Permissions": [ { "Name": "RecordsManagement.Read.All", @@ -291243,248 +304342,267 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Get-MgSecurityTriggerTypeRetentionEventTypeCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/$count", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementHealthOverviewIssueCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues/$count", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementIssueCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentArchive", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/$count", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServiceAnnouncementMessageCount", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291527,19 +304645,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipal", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0", "Uri": "/servicePrincipals", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291582,73 +304700,78 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipal", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalAppManagementPolicyCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appManagementPolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291691,18 +304814,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalAppRoleAssignedTo", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalAppRoleAssignedToCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291745,33 +304870,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalAppRoleAssignedToCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291814,18 +304940,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291868,19 +304996,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalAppRoleAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals(appId='{appId}')", + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -291923,33 +305052,89 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalByAppId", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/getByIds", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgServicePrincipalById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/servicePrincipals/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", + "Permissions": [ + { + "Name": "Policy.Read.All", + "Description": "Read your organization's policies", + "FullDescription": "Allows the app to read all your organization's policies without a signed in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "Policy.ReadWrite.ApplicationConfiguration", + "Description": "Read and write your organization's application configuration policies", + "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Policy.Read.ApplicationConfiguration", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Application.ReadWrite.OwnedBy", + "Description": "Manage apps that this app creates or owns", + "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + }, + { + "Name": "Application.ReadWrite.All", + "Description": "Read and write all applications", + "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -291992,72 +305177,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalClaimMappingPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", - "Permissions": [ - { - "Name": "Policy.Read.All", - "Description": "Read your organization's policies", - "FullDescription": "Allows the app to read all your organization's policies without a signed in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Policy.ReadWrite.ApplicationConfiguration", - "Description": "Read and write your organization's application configuration policies", - "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Policy.Read.ApplicationConfiguration", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.OwnedBy", - "Description": "Manage apps that this app creates or owns", - "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write all applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalClaimMappingPolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, + "CommandAlias": null, "Method": "GET", - "ApiReferenceLink": null - }, - { + "Command": "Get-MgServicePrincipalClaimMappingPolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -292100,19 +305233,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalClaimMappingPolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292155,32 +305288,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalCreatedObject", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292223,45 +305358,49 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalCreatedObject", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalCreatedObjectCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292304,47 +305443,49 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalCreatedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalCreatedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/createdObjects/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292371,18 +305512,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalDelegatedPermissionClassification", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalDelegatedPermissionClassificationCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292409,19 +305552,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalDelegatedPermissionClassificationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0", "Uri": "/servicePrincipals/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -292464,59 +305607,63 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalEndpointCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -292559,18 +305706,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -292613,18 +305761,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -292667,19 +305817,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalHomeRealmDiscoveryPolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgServicePrincipalMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292762,21 +305915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgServicePrincipalMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/getMemberObjects", + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292875,35 +306029,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOf", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalMemberOf", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -292946,99 +306099,107 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalMemberOfCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293081,75 +306242,79 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/directoryRole/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/memberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOauth2PermissionGrant", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOauth2PermissionGrant", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -293176,18 +306341,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/oauth2PermissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -293214,33 +306381,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOauth2PermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObject", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwnedObject", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293283,153 +306451,165 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOwnedObject", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwnedObjectCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293472,89 +306652,94 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOwnedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/appRoleAssignment/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/ownedObjects/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwner", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293597,126 +306782,135 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOwner", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/appRoleAssignment", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwnerByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293759,18 +306953,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOwnerByRef", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalOwnerCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -293813,184 +307009,199 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalOwnerCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/appRoleAssignment/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalOwnerCountAsUser", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroupCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalRiskDetectionCount", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgServicePrincipalSynchronizationAccessToken", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/acquireAccessToken", + "ApiVersion": "v1.0", + "Variants": [ + "Acquire", + "AcquireExpanded", + "AcquireViaIdentity", + "AcquireViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294009,21 +307220,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationAccessToken", - "Variants": [ - "Acquire", - "AcquireExpanded", - "AcquireViaIdentity", - "AcquireViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronization-acquireaccesstoken?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294050,19 +307260,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294089,46 +307299,50 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationJob", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationJobCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294155,19 +307369,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationJobCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "Module": "Applications", "Permissions": [ { "Name": "CustomSecAttributeProvisioning.Read.All", @@ -294210,74 +307425,79 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationJobSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationJobSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationSecretCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294304,19 +307524,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationTemplate", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294343,18 +307563,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationTemplate", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationTemplateCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294381,19 +307603,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationTemplateCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -294420,115 +307643,122 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalSynchronizationTemplateSchema", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalSynchronizationTemplateSchemaDirectoryCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTokenIssuancePolicyCount", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenIssuancePolicies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalTokenLifetimePolicy", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -294571,18 +307801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalTokenLifetimePolicy", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalTokenLifetimePolicyCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/tokenLifetimePolicies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -294625,33 +307857,34 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalTokenLifetimePolicyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -294686,99 +307919,107 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole", - "Permissions": [], "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgServicePrincipalTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -294813,184 +308054,197 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgServicePrincipalTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/directoryRole/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgServicePrincipalTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/transitiveMemberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareCount", + "ApiReferenceLink": null, + "Uri": "/shares/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgShareDriveItem", + "ApiReferenceLink": null, "Uri": "/shares/{sharedDriveItem-id}/driveItem", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -295017,19 +308271,20 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgShareDriveItem", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgShareDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -295080,560 +308335,591 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgShareDriveItemContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListColumnCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/drive", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListDrive", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -295644,403 +308930,438 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/delta", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/items/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListOperationCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/shares/{sharedDriveItem-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareRoot", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareRootContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0", "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -296067,46 +309388,49 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgShareSharedDriveItemSharedDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/shares-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/shares", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/site", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgShareSite", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/site", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-1.0", "Uri": "/sites/{site-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296125,19 +309449,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSite", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0", "Uri": "/sites", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296156,34 +309480,37 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSite", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-search?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteAnalytic", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -296234,129 +309561,138 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityDriveItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteAnalyticLastSevenDay", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/analytics/lastSevenDays", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -296407,19 +309743,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteAnalyticLastSevenDay", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/analytics/allTime", + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -296470,19 +309807,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteAnalyticTime", + "OutputType": "IMicrosoftGraphItemActivityStat" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/getApplicableContentTypesForList(listId='{listId}')", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296517,33 +309855,35 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteApplicableContentTypeForList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296578,19 +309918,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296625,18 +309965,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteColumn", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296671,33 +310013,35 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296732,19 +310076,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296779,80 +310123,86 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentType", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296887,19 +310237,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentTypeColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296934,18 +310284,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentTypeColumn", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentTypeColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -296980,115 +310332,123 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentTypeColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", "Uri": "/sites/{site-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -297107,19 +310467,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentTypeCompatibleHubContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/contentTypes/$count", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297154,19 +310515,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteContentTypeCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteCount", + "ApiReferenceLink": null, "Uri": "/sites/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get1" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297185,18 +310546,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteCount", - "Variants": [ - "Get1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteDefaultDrive", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drive", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -297247,19 +310610,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0", "Uri": "/sites/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297278,32 +310641,34 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteDrive", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drives", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -297354,18 +310719,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteDrive", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteDriveCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/drives/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -297416,430 +310783,460 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/externalColumns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/externalColumns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteExternalColumnCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/externalColumns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathApplicableContentTypeForList", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getApplicableContentTypesForList(listId='{listId}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-getapplicablecontenttypesforlist?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/drives", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathExternalColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/externalColumns", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/lists", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/sites", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetGraphBPrePathActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteGetGraphBPrePathByPath", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297858,19 +311255,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists", + "ApiVersion": "v1.0", + "Variants": [ + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297889,18 +311286,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteList", - "Variants": [ - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297935,19 +311334,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -297982,18 +311381,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListColumn", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298028,33 +311429,35 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298089,19 +311492,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentType", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentType", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298136,18 +311539,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentType", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContentType" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298182,19 +311587,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentTypeColumn", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentTypeColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298229,18 +311634,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentTypeColumn", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentTypeColumnCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298275,115 +311682,123 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentTypeColumnCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -298402,19 +311817,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentTypeCompatibleHubContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/$count", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298449,19 +311865,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListContentTypeCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/$count", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298480,88 +311897,94 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/drive", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListDrive", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298588,19 +312011,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298619,34 +312042,37 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItem", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemAnalytic", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -298697,74 +312123,81 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemAnalytic", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", "Uri": "/sites/{site-id}/lists/{list-id}/items/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298783,21 +312216,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphListItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298840,19 +312272,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemDocumentSetVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298895,18 +312327,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemDocumentSetVersion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemDocumentSetVersionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -298949,33 +312383,35 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemDocumentSetVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemDriveItem", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Files.Read", @@ -299026,47 +312462,50 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemDriveItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299085,19 +312524,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemVersion", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299116,18 +312555,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemVersion", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphListItemVersion" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListItemVersionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299146,33 +312587,35 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListItemVersionCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299207,19 +312650,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299254,18 +312697,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListOperation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteListOperationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/operations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -299300,60 +312745,64 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteListOperationCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299396,19 +312845,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299451,18 +312900,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebookCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299505,19 +312956,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteNotebookCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", "Uri": "/sites/{site-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -299560,21 +313014,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebookSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299617,18 +313069,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteNotebookSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299671,18 +313124,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteNotebookSectionGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -299725,80 +313180,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/sites/{site-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [ - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -299833,32 +313243,82 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [ + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenotePageCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -299893,33 +313353,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenotePageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -299954,33 +313416,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300023,19 +313487,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300078,18 +313542,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300132,19 +313598,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300187,19 +313654,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300242,19 +313710,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300297,21 +313768,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -300354,18 +313823,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -300400,18 +313870,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgSiteOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300446,19 +313918,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOperation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300493,18 +313965,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteOperation", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteOperationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/operations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300539,19 +314013,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteOperationCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300570,19 +314045,19 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSitePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBaseSitePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSitePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300601,32 +314076,34 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSitePage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSitePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSitePageAsSitePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages/sitePage", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -300645,361 +314122,388 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSitePageAsSitePage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSitePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutHorizontalSectionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPart", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPart" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageAsSitePageWebPartCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSitePageCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/pages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -301018,19 +314522,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSitePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSitePageCountAsSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/sitePage/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/pages/sitePage/$count", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -301049,212 +314554,227 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSitePageCountAsSitePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePageLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutHorizontalSectionColumnWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageCanvaLayoutVerticalSectionWebpartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgSitePageMicrosoftGraphSitePageWebPartPositionOfWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}/getPositionOfWebPart", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWebPartPosition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphWebPartPosition" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSitePermissionCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", "Uri": "/sites/{site-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Notes.Create", @@ -301297,19 +314817,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteRecentNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphRecentNotebook" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStore", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301328,48 +314851,51 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStore", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/termStores/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStores/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301388,21 +314914,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroup", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroup", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301421,19 +314946,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroupCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301452,37 +314980,37 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroupSet", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301501,22 +315029,15 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroupSet", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301527,32 +315048,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301563,16 +315086,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301583,32 +315107,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301619,16 +315145,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301639,16 +315166,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301659,16 +315187,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301679,16 +315208,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -301699,13 +315229,24 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroupSetCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301724,131 +315265,139 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroupSetCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -301867,317 +315416,337 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroupSetTerm", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreGroupSetTermSet", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], "Module": "Sites", - "Command": "Get-MgSiteTermStoreGroupSetTermSet", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -302196,38 +315765,30 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSet", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302238,13 +315799,24 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetChild", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1", + "List2", + "List3" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -302263,24 +315835,15 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetChild", - "Variants": [ - "List", - "List1", - "List2", - "List3" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302291,16 +315854,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302311,32 +315875,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302347,16 +315913,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302367,16 +315934,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302387,16 +315955,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302407,16 +315976,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302427,78 +315997,83 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302509,32 +316084,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302545,16 +316122,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302565,32 +316143,34 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1", "List2", "List3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302601,16 +316181,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302621,16 +316202,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302641,16 +316223,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302661,16 +316244,17 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", @@ -302681,451 +316265,488 @@ "GetViaIdentity2", "GetViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetParentGroupSetTermSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetRelation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303144,19 +316765,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetRelation", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetRelationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303175,69 +316799,73 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetRelationCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetTerm", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303256,51 +316884,52 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetTerm", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetTermChild", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303319,19 +316948,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetTermChild", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetTermChildCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303350,163 +316982,171 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetTermChildCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermChildSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermCount", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303525,19 +317165,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetTermRelation", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSiteTermStoreSetTermRelationCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Sites", "Permissions": [ { "Name": "TermStore.Read.All", @@ -303556,85 +317199,88 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSiteTermStoreSetTermRelationCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationFromTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/fromTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermRelationToTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}/toTerm", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSiteTermStoreSetTermSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/set", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgSubscribedSku", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-get?view=graph-rest-1.0", "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -303669,19 +317315,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgSubscribedSku", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSubscribedSku" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgSubscribedSku", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-list?view=graph-rest-1.0", "Uri": "/subscribedSkus", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.Read.All", @@ -303716,59 +317362,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgSubscribedSku", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscribedsku-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-get?view=graph-rest-1.0", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-get?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/subscriptions", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-list?view=graph-rest-1.0", + "Uri": "/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-list?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/sites/{site-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgSubSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/sites/{site-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSubSite", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/sites", + "ApiVersion": "v1.0", + "Variants": [ + "List2" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -303787,18 +317437,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSubSite", - "Variants": [ - "List2" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgSubSiteCount", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/sites/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -303817,19 +317469,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgSubSiteCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-1.0", + "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -303904,19 +317557,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeam", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-1.0", "Uri": "/teams", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -303943,18 +317596,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeam", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teams-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get1", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -304029,19 +317684,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannel", - "Variants": [ - "Get1", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels", + "ApiVersion": "v1.0", + "Variants": [ + "List1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -304116,18 +317771,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannel", - "Variants": [ - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -304202,19 +317859,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder", + "Module": "Teams", "Permissions": [ { "Name": "Files.Read.All", @@ -304289,33 +317947,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelFileFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -304350,19 +318010,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -304389,18 +318049,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -304427,19 +318089,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304474,21 +318139,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessage", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304523,18 +318186,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304569,19 +318234,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304616,19 +318282,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304663,21 +318332,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304712,18 +318379,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304758,19 +318427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageHostedContentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304805,19 +318475,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReply", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReply", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304852,18 +318522,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReply", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReplyCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304898,19 +318570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReplyCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304945,19 +318618,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReplyDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -304992,21 +318668,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReplyHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -305041,18 +318715,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReplyHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Read.Group", @@ -305087,19 +318763,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelMessageReplyHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelSharedWithTeam", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -305118,21 +318797,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelSharedWithTeam", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelSharedWithTeam", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -305151,32 +318828,34 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelSharedWithTeam", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -305195,18 +318874,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelSharedWithTeamAllowedMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -305225,19 +318906,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelSharedWithTeamAllowedMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/$count", + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -305256,19 +318938,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelSharedWithTeamCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -305367,19 +319050,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelTab", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -305478,18 +319161,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelTab", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamChannelTabCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Read.Group", @@ -305588,33 +319273,34 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamChannelTabCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamCount", + "ApiReferenceLink": null, "Uri": "/teams/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -305641,59 +319327,63 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/group/serviceProvisioningErrors", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamGroupServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/group/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamGroupServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/group/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/incomingChannels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamIncomingChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/incomingChannels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamIncomingChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/incomingChannels", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -305720,18 +319410,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamIncomingChannel", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamIncomingChannelCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/incomingChannels/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.ReadBasic.All", @@ -305758,19 +319450,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamIncomingChannelCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -305917,19 +319610,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamInstalledApp", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -306068,18 +319761,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamInstalledAppCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/installedApps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -306218,47 +319913,50 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -306285,19 +319983,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -306324,18 +320022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamMember.Read.Group", @@ -306362,74 +320062,78 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/operations", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/operations/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamOperationCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamPermissionGrant", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -306512,18 +320216,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamPermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamPermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/permissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForTeam", @@ -306606,47 +320312,50 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamPermissionGrantCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/photo", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/teams/{team-id}/photo/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamPrimaryChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -306689,470 +320398,453 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamPrimaryChannel", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/delta", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamPrimaryChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/teams/{team-id}/schedule", - "Permissions": [ - { - "Name": "Schedule.Read.All", - "Description": "Read your schedule items", - "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Group.Read.All", - "Description": "Read all groups", - "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307187,80 +320879,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleOfferShiftRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests", - "Permissions": [ - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOfferShiftRequest", - "Variants": [ - "List" - ], + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count", - "Permissions": [ - { - "Name": "Schedule.ReadWrite.All", - "Description": "Read and write your schedule items", - "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleOfferShiftRequestCount", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307295,19 +320927,83 @@ "IsLeastPrivilege": false } ], + "OutputType": "IMicrosoftGraphOfferShiftRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], "Module": "Teams", - "Command": "Get-MgTeamScheduleOpenShift", + "Permissions": [ + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphOfferShiftRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleOfferShiftRequestCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [ + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/openShifts", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307342,18 +321038,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307388,19 +321085,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307435,18 +321133,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307481,19 +321180,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftChangeRequestCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts/$count", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307528,19 +321228,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleOpenShiftCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307575,19 +321276,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307622,18 +321324,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307668,19 +321371,68 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleSchedulingGroupCount", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [ + { + "Name": "Schedule.Read.All", + "Description": "Read your schedule items", + "FullDescription": "Allows the app to read schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "Schedule.ReadWrite.All", + "Description": "Read and write your schedule items", + "FullDescription": "Allows the app to manage schedule, schedule groups, shifts and associated entities in the Teams or Shifts application on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.ReadWrite.All", + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Group.Read.All", + "Description": "Read all groups", + "FullDescription": "Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. ", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Group.Read.All", @@ -307715,19 +321467,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleShift", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307762,18 +321514,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleShift", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleShiftCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shifts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307808,33 +321562,34 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleShiftCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307869,18 +321624,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleSwapShiftChangeRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleSwapShiftChangeRequestCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307915,19 +321672,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleSwapShiftChangeRequestCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -307962,19 +321720,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOff", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOff" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOff", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308009,18 +321767,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOff", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOff" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308055,19 +321815,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308102,19 +321863,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffReason", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffReason" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffReason", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308149,18 +321910,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffReason", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffReason" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffReasonCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffReasons/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308195,19 +321958,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffReasonCount", + "OutputType": null + }, + { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308242,19 +322006,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffRequest", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308289,18 +322053,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffRequest", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamScheduleTimeOffRequestCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timeOffRequests/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.Read.All", @@ -308335,19 +322101,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamScheduleTimeOffRequestCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTag", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308382,19 +322149,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTag", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTag", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308429,18 +322196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTag", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTagCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308475,19 +322244,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTagCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308522,19 +322292,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTagMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTagMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308569,18 +322339,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTagMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamTagMemberCount", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.Read", @@ -308615,573 +322387,613 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamTagMemberCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/template", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/template", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamwork", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-1.0", + "Uri": "/teamwork", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamwork", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-get?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamwork" }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedChats", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedChat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedChat" }, { - "Uri": "/teamwork/deletedChats/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedChatCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelFileFolder", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMemberCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamAllowedMemberCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}/allowedMembers/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelSharedWithTeamCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTabCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamChannelTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/teamwork/deletedTeams/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTeamworkDeletedTeamCount", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamworkTeamAppSetting", + "ApiReferenceLink": null, "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkAppSettings.Read.All", @@ -309200,18 +323012,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamworkTeamAppSetting", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppSettings", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamworkWorkforceIntegration", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -309230,19 +323044,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamworkWorkforceIntegration", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamworkWorkforceIntegration", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -309261,18 +323075,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamworkWorkforceIntegration", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTeamworkWorkforceIntegrationCount", + "ApiReferenceLink": null, "Uri": "/teamwork/workforceIntegrations/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Teams", "Permissions": [ { "Name": "WorkforceIntegration.Read.All", @@ -309291,18 +323106,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgTeamworkWorkforceIntegrationCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309321,19 +323138,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", - "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/delegatedAdminCustomers", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309352,18 +323169,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", - "Command": "Get-MgTenantRelationshipDelegatedAdminCustomer", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/delegatedAdminCustomers/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309382,62 +323200,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", - "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", - "Permissions": [ - { - "Name": "DelegatedAdminRelationship.Read.All", - "Description": "Read Delegated Admin relationships with customers", - "FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DelegatedAdminRelationship.ReadWrite.All", - "Description": "Manage Delegated Admin relationships with customers", - "FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309456,19 +323246,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetailCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309487,19 +323278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309518,18 +323310,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309548,19 +323341,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309579,18 +323373,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309609,19 +323404,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignmentCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/$count", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309640,18 +323436,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309670,19 +323467,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309701,18 +323499,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309731,19 +323530,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipOperationCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309762,19 +323562,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309793,18 +323594,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count", + "Module": "Identity.Partner", "Permissions": [ { "Name": "DelegatedAdminRelationship.Read.All", @@ -309823,19 +323625,51 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Partner", + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipDelegatedAdminRelationshipRequestCount", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [ + { + "Name": "DelegatedAdminRelationship.Read.All", + "Description": "Read Delegated Admin relationships with customers", + "FullDescription": "Allows the app to read details of delegated admin relationships with customers like access details (that includes roles) and the duration as well as specific role assignments to security groups without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DelegatedAdminRelationship.ReadWrite.All", + "Description": "Manage Delegated Admin relationships with customers", + "FullDescription": "Allows the app to manage (create-update-terminate) Delegated Admin relationships with customers and role assignments to security groups for active Delegated Admin relationships without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipMultiTenantOrganization", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -309862,18 +323696,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgTenantRelationshipMultiTenantOrganization", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganization", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.Read.All", @@ -309892,32 +323727,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgTenantRelationshipMultiTenantOrganizationJoinRequest", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/tenants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -309944,18 +323781,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenantCount", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/multiTenantOrganization/tenants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "MultiTenantOrganization.ReadBasic.All", @@ -309982,18 +323820,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgTenantRelationshipMultiTenantOrganizationTenantCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -310116,19 +323956,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUser", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-get?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0", "Uri": "/users", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -310235,128 +324075,137 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUser", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-list?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/$count", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivityCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivityHistoryItemActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}/activity", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/$count", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserActivityHistoryItemCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAgreementAcceptance", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/agreementAcceptances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AgreementAcceptance.Read", @@ -310375,18 +324224,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgUserAgreementAcceptance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAgreementAcceptanceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/agreementAcceptances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "AgreementAcceptance.Read", @@ -310405,33 +324256,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Get-MgUserAgreementAcceptanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAppRoleAssignment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -310450,18 +324302,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgUserAppRoleAssignment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAppRoleAssignmentCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/appRoleAssignments/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Directory.Read.All", @@ -310480,19 +324334,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Get-MgUserAppRoleAssignmentCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationEmailMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310527,19 +324382,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationEmailMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310574,18 +324429,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationEmailMethod", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationEmailMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310620,19 +324477,67 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationEmailMethodCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [ + { + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite.All", + "Description": "Read and write all users' authentication methods", + "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.ReadWrite", + "Description": "Read and write your authentication methods", + "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310667,19 +324572,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationFido2Method", + "OutputType": "IMicrosoftGraphFido2AuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationFido2MethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310714,65 +324620,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationFido2Method", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFido2AuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/fido2Methods/$count", - "Permissions": [ - { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite.All", - "Description": "Read and write all users' authentication methods", - "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.ReadWrite", - "Description": "Read and write your authentication methods", - "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationFido2MethodCount", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -310807,19 +324668,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -310854,18 +324715,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMethod", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/methods/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -310900,19 +324763,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMethodCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310947,19 +324811,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -310994,18 +324858,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethod", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMicrosoftAuthenticatorAuthenticationMethod" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311040,33 +324906,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationMicrosoftAuthenticatorMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserAuthenticationOperation", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311101,93 +324969,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Get-MgUserAuthenticationOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations/$count", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}", - "Permissions": [ - { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": true - }, - { - "Name": "UserAuthenticationMethod.ReadWrite.All", - "Description": "Read and write all users' authentication methods", - "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.ReadWrite", - "Description": "Read and write your authentication methods", - "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/passwordMethods/{passwordAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/passwordMethods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311222,18 +325046,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/passwordMethods", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/passwordMethods/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311268,19 +325093,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphPasswordAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPasswordMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/passwordMethods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311315,19 +325141,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311362,18 +325189,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read.All", @@ -311408,24 +325236,25 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationPhoneMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { - "Name": "UserAuthenticationMethod.Read", - "Description": "Read your authentication methods.", - "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": true @@ -311447,27 +325276,28 @@ "IsLeastPrivilege": false }, { - "Name": "UserAuthenticationMethod.Read.All", - "Description": "Read all users' authentication methods", - "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", "IsAdmin": true, "PermissionType": "DelegatedWork", "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/softwareOathMethods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311502,18 +325332,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/softwareOathMethods", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/softwareOathMethods/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311548,19 +325379,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphSoftwareOathAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationSoftwareOathMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/softwareOathMethods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311595,19 +325427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311642,18 +325475,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311688,19 +325522,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationTemporaryAccessPassMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311735,19 +325570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311782,18 +325618,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/$count", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.Read", @@ -311828,61 +325665,112 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", + "OutputType": "IMicrosoftGraphWindowsHelloForBusinessAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethodCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [ + { + "Name": "UserAuthenticationMethod.Read", + "Description": "Read your authentication methods.", + "FullDescription": "Allows the app to read your authentication methods, including phone numbers and Authenticator app settings. This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "UserAuthenticationMethod.ReadWrite.All", + "Description": "Read and write all users' authentication methods", + "FullDescription": "Allows the app to read and write authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.ReadWrite", + "Description": "Read and write your authentication methods", + "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "UserAuthenticationMethod.Read.All", + "Description": "Read all users' authentication methods", + "FullDescription": "Allows the app to read authentication methods of all users you have access to in your organization. Authentication methods include things like a user’s phone numbers and Authenticator app settings. This does not allow the app to see secret information like passwords, or to sign-in or otherwise use the authentication methods.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserAuthenticationWindowsHelloForBusinessMethodDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/getByIds", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgUserById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0", + "Uri": "/users/getByIds", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getbyids?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars/{calendar-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCalendar", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -311917,18 +325805,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendar", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCalendarCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -311963,19 +325853,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCalendarEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "v1.0", + "Variants": [ + "List1" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312002,18 +325892,22 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarEvent", - "Variants": [ - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCalendarEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/calendar/events/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "Delta1", + "DeltaViaIdentity", + "DeltaViaIdentity1" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Calendars.Read", @@ -312040,21 +325934,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserCalendarEventDelta", - "Variants": [ - "Delta", - "Delta1", - "DeltaViaIdentity", - "DeltaViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserCalendarGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312073,19 +325966,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendarGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserCalendarGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312112,18 +326005,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendarGroup" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserCalendarGroupCalendar", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312158,18 +326052,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarGroupCalendar", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCalendarGroupCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendarGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312196,81 +326092,86 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarGroupCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCalendarPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Get-MgUserCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", + "Uri": "/users/{user-id}/calendars/{calendar-id}/getSchedule", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetExpanded1", "GetViaIdentity1", "GetViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduleInformation" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserCalendarView", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendar/calendarView", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -312297,19 +326198,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserCalendarView", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -312392,19 +326294,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChat", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -312447,18 +326349,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChat", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -312501,102 +326405,109 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatInstalledAppCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMember", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -312695,19 +326606,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMember", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMember", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -312806,18 +326717,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMember", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMemberCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/members/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChatMember.Read", @@ -312916,19 +326829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMemberCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -312987,19 +326901,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -313042,18 +326956,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessageCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -313096,19 +327012,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/chats/{chat-id}/messages/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Chat.Read", @@ -313167,19 +327084,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserChatMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -313238,21 +327158,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessageHostedContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -313311,18 +327229,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessageHostedContent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserChatMessageHostedContentCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Read", @@ -313381,256 +327301,274 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserChatMessageHostedContentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReplyCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReplyDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatMessageReplyHostedContentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPermissionGrantCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatPinnedMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/$count", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatTabCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserChatTabTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313649,19 +327587,19 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313680,18 +327618,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContact", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contacts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313710,19 +327650,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/contacts/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -313741,60 +327682,64 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313813,19 +327758,19 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313844,32 +327789,34 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolder", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313888,18 +327835,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderChildFolder", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313918,19 +327867,19 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderChildFolderContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313949,18 +327898,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderChildFolderContact", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolderContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -313979,19 +327930,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderChildFolderContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolderContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -314010,88 +327962,94 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserContactFolderChildFolderContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderChildFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -314110,33 +328068,35 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderChildFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderChildFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -314155,19 +328115,19 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderContact", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderContact", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -314186,18 +328146,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderContact", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContact" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderContactCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -314216,19 +328178,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderContactCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderContactDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -314247,88 +328210,94 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserContactFolderContactDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contact-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/$count", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderContactExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserContactFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/contactFolders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "PersonalContacts", "Permissions": [ { "Name": "Contacts.Read", @@ -314347,19 +328316,20 @@ "IsLeastPrivilege": false } ], - "Module": "PersonalContacts", - "Command": "Get-MgUserContactFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserContactFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/contactFolders/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Contacts.Read", @@ -314378,47 +328348,49 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserContactFolderDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contactfolder-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCount", + "ApiReferenceLink": null, "Uri": "/users/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -314525,32 +328497,34 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserCount", - "Variants": [ - "Get" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCreatedObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCreatedObject", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/createdObjects", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -314601,45 +328575,49 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserCreatedObject", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/createdObjects/servicePrincipal", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCreatedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserCreatedObjectCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/createdObjects/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -314690,47 +328668,49 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserCreatedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/createdObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserCreatedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/createdObjects/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserDefaultCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDefaultCalendarEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/calendar/events", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -314757,18 +328737,22 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserDefaultCalendarEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgUserDefaultCalendarSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0", "Uri": "/users/{user-id}/calendar/getSchedule", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -314795,21 +328779,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Get-MgUserDefaultCalendarSchedule", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScheduleInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/calendar-getschedule?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphScheduleInformation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDefaultDrive", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drive", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -314860,19 +328843,19 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgUserDefaultDrive", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-1.0", "Uri": "/users/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -314907,73 +328890,78 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserDelta", - "Variants": [ - "Delta" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDeviceManagementTroubleshootingEventCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDirectReport", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/directReports", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -315016,72 +329004,78 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserDirectReport", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}/orgContact", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}/orgContact", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/users/{user-id}/directReports/orgContact", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/orgContact", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/users/{user-id}/directReports/{directoryObject-id}/user", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/{directoryObject-id}/user", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/directReports/user", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/user", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDirectReportCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/directReports/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -315124,61 +329118,64 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserDirectReportCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/orgContact/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportCountAsOrgContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/orgContact/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/directReports/user/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDirectReportCountAsUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/directReports/user/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDrive", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drives", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -315229,128 +329226,138 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgUserDrive", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveBundleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveContentTypeBase", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/base", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/{contentType-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveContentTypeBaseTypeCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/baseTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserDriveCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/drives/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -315401,2610 +329408,2797 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Get-MgUserDriveCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveFollowing", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveFollowingCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemChildCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List", "List1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListColumnCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnLinkCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnPositionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnPositions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeColumnSourceColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}/sourceColumn", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeCompatibleHubContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/getCompatibleHubContentTypes", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-getcompatiblehubcontenttypes?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListContentTypeCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/drive", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/drive", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveListSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/getActivitiesByInterval", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootActivityByInterval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/itemactivitystat-getactivitybyinterval?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticItemActivityStatCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/lastSevenDays", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticLastSevenDay", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/lastSevenDays", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/allTime", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootAnalyticTime", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/allTime", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootChildCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "Delta1", "DeltaViaIdentity", "DeltaViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootItemLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootLastModifiedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemActivityByInterval", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/getActivitiesByInterval", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/analytics", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserServiceProvisioningError", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceProvisioningError", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceProvisioningError" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemCreatedByUserServiceProvisioningErrorCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/serviceProvisioningErrors/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootPermissionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootSubscriptionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootThumbnailCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveRootVersionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveSpecial", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/$count", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserDriveSpecialCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -318023,19 +332217,19 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserEvent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserEvent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -318062,73 +332256,79 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserEvent", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserEventCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserEventCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -318155,19 +332355,20 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserEventCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserEventDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/events/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Calendars.Read", @@ -318194,74 +332395,78 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserEventDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserEventInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserEventInstance", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}/instances", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -318280,73 +332485,79 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserEventInstance", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/calendar", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserEventInstanceCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/calendar", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserEventInstanceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/events/{event-id}/instances/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadBasic", @@ -318365,129 +332576,137 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Get-MgUserEventInstanceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/$count", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserEventInstanceExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/extensions/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/followedSites/{site-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserFollowedSite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/followedSites/{site-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserFollowedSite", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/followedSites", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -318506,18 +332725,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgUserFollowedSite", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSite" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserFollowedSiteCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/followedSites/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Read.All", @@ -318536,74 +332757,78 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Get-MgUserFollowedSiteCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserInferenceClassification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassification", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserInferenceClassificationOverrideCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserJoinedTeam", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/joinedTeams", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -318662,46 +332887,49 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserJoinedTeam", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod", - "Permissions": [], - "Module": "People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserLastSharedMethodInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/lastSharedMethod", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserLicenseDetail", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/licenseDetails", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -318744,18 +332972,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserLicenseDetail", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLicenseDetails" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserLicenseDetailCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/licenseDetails/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -318798,19 +333028,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserLicenseDetailCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserLicenseDetailTeamLicensingDetail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-1.0", + "Uri": "/users/{user-id}/licenseDetails/getTeamsLicensingDetails", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/licenseDetails/getTeamsLicensingDetails", + "Module": "Users.Functions", "Permissions": [ { "Name": "User.Read", @@ -318845,19 +333076,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserLicenseDetailTeamLicensingDetail", + "OutputType": "IMicrosoftGraphTeamsLicensingDetails" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsLicensingDetails", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/licensedetails-getteamslicensingdetails?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/mailboxSettings", + "Module": "Users", "Permissions": [ { "Name": "MailboxSettings.Read", @@ -318876,19 +333108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserMailboxSetting", + "OutputType": "IMicrosoftGraphMailboxSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -318923,19 +333156,19 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolder", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -318970,32 +333203,34 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolder", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderChildFolder", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319030,18 +333265,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderChildFolder", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderChildFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319076,225 +333313,241 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderChildFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/delta", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/delta", + "ApiVersion": "v1.0", "Variants": [ "Delta", "DeltaViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderChildFolderMessageRuleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319329,19 +333582,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/mailFolders/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319376,19 +333630,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserMailFolderDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMailFolder" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.Read", @@ -319415,19 +333670,19 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319462,59 +333717,64 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderMessageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.Read", @@ -319541,19 +333801,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderMessageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/$count", + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319588,19 +333849,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMailFolderMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMailFolderMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -319635,101 +333897,110 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserMailFolderMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", - "Permissions": [], - "Module": "Mail", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMailFolderMessageRuleCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgUserMailTip", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-1.0", "Uri": "/users/{user-id}/getMailTips", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Mail.Read", @@ -319748,21 +334019,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Get-MgUserMailTip", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailTips", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-getmailtips?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMailTips" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserManagedAppDiagnosticStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedappdiagnosticstatuses?view=graph-rest-1.0", "Uri": "/users/{user-id}/getManagedAppDiagnosticStatuses", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -319781,19 +334051,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserManagedAppDiagnosticStatus", + "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserManagedAppPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedapppolicies?view=graph-rest-1.0", + "Uri": "/users/{user-id}/getManagedAppPolicies", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppDiagnosticStatus", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedappdiagnosticstatuses?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/getManagedAppPolicies", + "Module": "Users.Functions", "Permissions": [ { "Name": "DeviceManagementApps.Read.All", @@ -319812,306 +334083,328 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserManagedAppPolicy", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-getmanagedapppolicies?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/users/{user-id}/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/users/{user-id}/managedAppRegistrations", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/users/{user-id}/managedAppRegistrations/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedAppRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedAppRegistrations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceCompliancePolicyStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceConfigurationStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionRequestCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/users", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareStateCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserManagedDeviceWithAppFailure", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-troubleshooting-user-getmanageddeviceswithappfailures?view=graph-rest-1.0", "Uri": "/users/{user-id}/getManagedDevicesWithAppFailures", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -320130,19 +334423,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserManagedDeviceWithAppFailure", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserManager", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/manager", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-troubleshooting-user-getmanageddeviceswithappfailures?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/manager", + "Module": "Users", "Permissions": [ { "Name": "User.Read.All", @@ -320177,19 +334471,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserManager", + "OutputType": "IMicrosoftGraphDirectoryObject" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserManagerByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/manager/$ref", + "Module": "Users", "Permissions": [ { "Name": "User.Read.All", @@ -320224,19 +334519,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserManagerByRef", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgUserMemberGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0", "Uri": "/users/{user-id}/getMemberGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -320319,21 +334617,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Get-MgUserMemberGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgUserMemberObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0", + "Uri": "/users/{user-id}/getMemberObjects", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetExpanded", "GetViaIdentity", "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmembergroups?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/getMemberObjects", + "Module": "Users.Actions", "Permissions": [ { "Name": "Application.Read.All", @@ -320432,21 +334731,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Get-MgUserMemberObject", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-getmemberobjects?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/{directoryObject-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320465,19 +334763,19 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOf", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320512,32 +334810,34 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/administrativeUnit", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320556,32 +334856,34 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfAsAdministrativeUnit", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfAsDirectoryRole", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/directoryRole", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320600,32 +334902,34 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfAsDirectoryRole", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfAsGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/group", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320644,18 +334948,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfAsGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/memberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320690,19 +334996,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/administrativeUnit/$count", + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320721,19 +335028,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfCountAsAdministrativeUnit", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/directoryRole/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/directoryRole/$count", + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320752,19 +335060,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfCountAsDirectoryRole", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/memberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/memberOf/group/$count", + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -320783,19 +335092,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Get-MgUserMemberOfCountAsGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/messages/{message-id}", + "Module": "Mail", "Permissions": [ { "Name": "Mail.Read", @@ -320822,19 +335132,19 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMessage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -320869,59 +335179,64 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMessage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMessageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Mail", "Permissions": [ { "Name": "Mail.Read", @@ -320948,19 +335263,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMessageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMessageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/messages/$count", + "Module": "Mail", "Permissions": [ { "Name": "Mail.ReadBasic", @@ -320995,19 +335311,20 @@ "IsLeastPrivilege": false } ], - "Module": "Mail", - "Command": "Get-MgUserMessageCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserMessageDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/messages/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Mail.Read", @@ -321034,74 +335351,78 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserMessageDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/$count", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserMessageExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOauth2PermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOauth2PermissionGrant", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/oauth2PermissionGrants", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -321120,18 +335441,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOauth2PermissionGrant", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOauth2PermissionGrantCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/oauth2PermissionGrants/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Directory.Read.All", @@ -321150,19 +335473,75 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOauth2PermissionGrantCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [ + { + "Name": "Notes.Create", + "Description": "Create your OneNote notebooks", + "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": true + }, + { + "Name": "Notes.ReadWrite.All", + "Description": "Read and write all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.Read.All", + "Description": "Read all OneNote notebooks that you can access", + "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.ReadWrite", + "Description": "Read and write your OneNote notebooks", + "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + }, + { + "Name": "Notes.Read", + "Description": "Read your OneNote notebooks", + "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", + "IsAdmin": false, + "PermissionType": "DelegatedPersonal", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321205,19 +335584,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteNotebookCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321260,73 +335640,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteNotebook", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/notebooks/$count", - "Permissions": [ - { - "Name": "Notes.Create", - "Description": "Create your OneNote notebooks", - "FullDescription": "Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": true - }, - { - "Name": "Notes.ReadWrite.All", - "Description": "Read and write all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read, share, and modify all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.Read.All", - "Description": "Read all OneNote notebooks that you can access", - "FullDescription": "Allows the app to read all the OneNote notebooks that you have access to.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.ReadWrite", - "Description": "Read and write your OneNote notebooks", - "FullDescription": "Allows the app to read, share, and modify OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - }, - { - "Name": "Notes.Read", - "Description": "Read your OneNote notebooks", - "FullDescription": "Allows the app to read OneNote notebooks on your behalf.", - "IsAdmin": false, - "PermissionType": "DelegatedPersonal", - "IsLeastPrivilege": false - } - ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteNotebookCount", + "CommandAlias": null, + "Method": "POST", + "Command": "Get-MgUserOnenoteNotebookFromWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onenote/notebooks/getNotebookFromWebUrl", + "ApiVersion": "v1.0", "Variants": [ "Get", - "GetViaIdentity" + "GetExpanded", + "GetViaIdentity", + "GetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/getNotebookFromWebUrl", + "Module": "Users.Actions", "Permissions": [ { "Name": "Notes.Create", @@ -321369,21 +335698,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Get-MgUserOnenoteNotebookFromWebUrl", - "Variants": [ - "Get", - "GetExpanded", - "GetViaIdentity", - "GetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCopyNotebookModel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getnotebookfromweburl?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphCopyNotebookModel" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteNotebookSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321426,18 +335753,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteNotebookSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321480,18 +335808,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteNotebookSectionGroup", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteOperation", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321534,33 +335864,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteOperation", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/users/{user-id}/onenote/operations/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnenoteOperationCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/operations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -321595,19 +335927,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenotePage", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -321642,18 +335974,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenotePage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenotePageContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -321688,19 +336022,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenotePageContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenotePageCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/pages/$count", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -321735,19 +336070,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenotePageCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteRecentNotebook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/getRecentNotebooks(includePersonalNotebooks={includePersonalNotebooks})", + "Module": "Users.Functions", "Permissions": [ { "Name": "Notes.Create", @@ -321790,33 +336126,35 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserOnenoteRecentNotebook", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecentNotebook", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/notebook-getrecentnotebooks?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphRecentNotebook" }, { - "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteResourceContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -321851,33 +336189,35 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteResourceContent", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/resources/$count", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnenoteResourceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321920,19 +336260,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSection", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -321975,18 +336315,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -322029,19 +336371,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -322084,19 +336427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionGroup", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionGroup", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", + "Variants": [ + "List", + "List1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -322139,19 +336483,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionGroup", - "Variants": [ - "List", - "List1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionGroupCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sectionGroups/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -322194,21 +336541,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionGroupCount", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionGroupSection", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -322251,18 +336596,19 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionGroupSection", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenoteSection" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnenoteSectionPage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Read", @@ -322297,18 +336643,20 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Get-MgUserOnenoteSectionPage", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -322343,19 +336691,19 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgUserOnlineMeeting", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -322390,114 +336738,123 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgUserOnlineMeeting", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnlineMeetingCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.Read", @@ -322532,143 +336889,153 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgUserOnlineMeetingCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingRecordingCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/$count", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/getVirtualAppointmentJoinWebUrl", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "VirtualAppointment.Read", @@ -322719,74 +337086,78 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserOnlineMeetingVirtualAppointmentJoinWebUrl", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-getvirtualappointmentjoinweburl?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/masterCategories", - "Permissions": [], - "Module": "Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/masterCategories/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOutlookMasterCategoryCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOwnedDevice", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedDevices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -322829,99 +337200,107 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOwnedDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/users/{user-id}/ownedDevices/appRoleAssignment", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/device", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/ownedDevices/device", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/ownedDevices/endpoint", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOwnedDeviceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedDevices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -322964,75 +337343,79 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOwnedDeviceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/appRoleAssignment/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/device/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedDevices/endpoint/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedDeviceCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedDevices/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOwnedObject", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedObjects", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323075,99 +337458,107 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOwnedObject", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/application", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/application", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/users/{user-id}/ownedObjects/application", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/application", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/group", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/ownedObjects/group", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/servicePrincipal", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/{directoryObject-id}/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/users/{user-id}/ownedObjects/servicePrincipal", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/servicePrincipal", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserOwnedObjectCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/ownedObjects/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323210,75 +337601,79 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserOwnedObjectCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/application/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsApplication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/application/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/group/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/ownedObjects/servicePrincipal/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserOwnedObjectCountAsServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/ownedObjects/servicePrincipal/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/people/{person-id}", - "Permissions": [], - "Module": "People", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserPerson", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/people/{person-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPerson", - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": "IMicrosoftGraphPerson" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserPerson", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/people", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "People", "Permissions": [ { "Name": "People.Read", @@ -323297,18 +337692,20 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserPerson", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPerson", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPerson" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPersonCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/people/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "People", "Permissions": [ { "Name": "People.Read", @@ -323327,19 +337724,22 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserPersonCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323382,21 +337782,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserPhoto", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photos", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323439,18 +337837,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserPhoto", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphProfilePhoto" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPhotoContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "Get1", + "GetViaIdentity", + "GetViaIdentity1" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323493,21 +337895,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserPhotoContent", - "Variants": [ - "Get", - "Get1", - "GetViaIdentity", - "GetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPlanner", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -323550,19 +337951,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgUserPlanner", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerUser", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerUser" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPlannerPlan", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/plans", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -323597,18 +337998,19 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgUserPlannerPlan", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlan" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPlannerTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.Read", @@ -323659,18 +338061,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Get-MgUserPlannerTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserPresence", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Presence.Read", @@ -323697,33 +338101,34 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Get-MgUserPresence", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserRegisteredDevice", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/registeredDevices", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323766,99 +338171,107 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserRegisteredDevice", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/appRoleAssignment", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/users/{user-id}/registeredDevices/appRoleAssignment", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/appRoleAssignment", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/device", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/device", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/registeredDevices/device", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/device", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/endpoint", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/{directoryObject-id}/endpoint", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/users/{user-id}/registeredDevices/endpoint", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/endpoint", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserRegisteredDeviceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/registeredDevices/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -323901,75 +338314,79 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserRegisteredDeviceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/appRoleAssignment/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/appRoleAssignment/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/device/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/device/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/registeredDevices/endpoint/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserRegisteredDeviceCountAsEndpoint", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/registeredDevices/endpoint/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserScopedRoleMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -323988,18 +338405,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgUserScopedRoleMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserScopedRoleMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/scopedRoleMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.Read.All", @@ -324018,19 +338437,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Get-MgUserScopedRoleMemberOfCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings", + "Module": "Users", "Permissions": [ { "Name": "User.Read.All", @@ -324049,19 +338469,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserSetting", + "OutputType": "IMicrosoftGraphUserSettings" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSettingShiftPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserSettings", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings/shiftPreferences", + "Module": "Users", "Permissions": [ { "Name": "User.Read.All", @@ -324096,101 +338517,108 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserSettingShiftPreference", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShiftPreferences", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindowsCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSettingWindowsInstanceCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSharedCountInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/shared/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -324209,33 +338637,34 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserSharedCountInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", - "Permissions": [], - "Module": "People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSharedInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSharedInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/shared", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -324254,46 +338683,49 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserSharedInsight", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSharedInsight" }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource", - "Permissions": [], - "Module": "People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSharedResourceInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/sponsors/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserSponsor", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/sponsors/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSponsor", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/sponsors", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -324320,18 +338752,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserSponsor", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserSponsorCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/sponsors/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -324358,19 +338792,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserSponsorCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/teamwork", + "Module": "Teams", "Permissions": [ { "Name": "UserTeamwork.Read", @@ -324389,35 +338824,36 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Get-MgUserTeamwork", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserTeamwork", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "Get1", "GetViaIdentity", "GetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/associatedTeams", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -324444,18 +338880,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkAssociatedTeam", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkAssociatedTeamCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/associatedTeams/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.ReadBasic.All", @@ -324482,19 +338920,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkAssociatedTeamCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -324609,19 +339048,19 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkInstalledApp", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -324736,18 +339175,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkInstalledApp", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkInstalledAppChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/chat", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -324811,22 +339252,23 @@ "FullDescription": "Allows the app to read, install, upgrade, and uninstall Teams apps for any user, without a signed-in user. Does not give the ability to read application-specific settings.", "IsAdmin": false, "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkInstalledAppChat", - "Variants": [ - "Get", - "GetViaIdentity" + "IsLeastPrivilege": false + } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTeamworkInstalledAppCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadForUser", @@ -324941,47 +339383,50 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Get-MgUserTeamworkInstalledAppCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsApp", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppTeamApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsApp", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsAppDefinition", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTeamworkInstalledAppTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}/teamsAppDefinition", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325016,19 +339461,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoList", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTaskList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325063,18 +339508,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoList", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTaskList" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoListCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325109,19 +339556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoListCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoListDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotasklist-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/todo/lists/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -325148,60 +339596,64 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserTodoListDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotasklist-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphTodoTaskList" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoListExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325236,19 +339688,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTask", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTask" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325283,18 +339735,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTask", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTodoTask" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserTodoTaskAttachment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325329,19 +339783,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskAttachment", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachmentBase" }, { + "CommandAlias": "Select", + "Method": "GET", + "Command": "Get-MgUserTodoTaskAttachment", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325376,18 +339830,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskAttachment", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAttachmentBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskAttachmentContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325422,19 +339878,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskAttachmentContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskAttachmentCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/$count", + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325469,74 +339926,79 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskAttachmentCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions", - "Permissions": [], - "Module": "Users", + "CommandAlias": "Select", + "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSessionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoTaskAttachmentSessionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325571,19 +340033,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskChecklistItem", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChecklistItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325618,18 +340080,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskChecklistItem", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChecklistItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskChecklistItemCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325664,19 +340128,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskChecklistItemCount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/$count", + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325711,19 +340176,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskDelta", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotask-delta?view=graph-rest-1.0", "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/delta", + "ApiVersion": "v1.0", + "Variants": [ + "Delta", + "DeltaViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "Tasks.Read", @@ -325758,60 +340224,64 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Get-MgUserTodoTaskDelta", - "Variants": [ - "Delta", - "DeltaViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/todotask-delta?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphTodoTask" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtension", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtension" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTodoTaskExtensionCount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325846,19 +340316,19 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskLinkedResource", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325893,18 +340363,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskLinkedResource", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTodoTaskLinkedResourceCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -325939,33 +340411,34 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTodoTaskLinkedResourceCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTransitiveMemberOf", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/transitiveMemberOf", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -326016,99 +340489,107 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTransitiveMemberOf", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/group", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/{directoryObject-id}/group", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/users/{user-id}/transitiveMemberOf/group", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/group", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTransitiveMemberOfCount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/transitiveMemberOf/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.Read", @@ -326159,61 +340640,65 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Get-MgUserTransitiveMemberOfCount", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/administrativeUnit/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/directoryRole/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/transitiveMemberOf/group/$count", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTransitiveMemberOfCountAsGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/transitiveMemberOf/group/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTrendingCountInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/trending/$count", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326232,33 +340717,34 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserTrendingCountInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/trending/{trending-id}", - "Permissions": [], - "Module": "People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserTrendingInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending/{trending-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrending", - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrending" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTrendingInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/trending", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326277,18 +340763,20 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserTrendingInsight", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrending", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTrending" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserTrendingResourceInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/trending/{trending-id}/resource", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326307,19 +340795,20 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserTrendingResourceInsight", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserUsedCountInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/insights/used/$count", + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326338,33 +340827,34 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserUsedCountInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", - "Permissions": [], - "Module": "People", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgUserUsedInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "GET", - "ApiReferenceLink": null + "Module": "People", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserUsedInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/used", + "ApiVersion": "v1.0", + "Variants": [ + "List" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326383,18 +340873,20 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserUsedInsight", - "Variants": [ - "List" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUsedInsight" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Get-MgUserUsedResourceInsight", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/insights/used/{usedInsight-id}/resource", + "ApiVersion": "v1.0", + "Variants": [ + "Get", + "GetViaIdentity" + ], + "Module": "People", "Permissions": [ { "Name": "Sites.Read.All", @@ -326413,494 +340905,531 @@ "IsLeastPrivilege": false } ], - "Module": "People", - "Command": "Get-MgUserUsedResourceInsight", - "Variants": [ - "Get", - "GetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Get1", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarByUserIdAndRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0", + "Uri": "/solutions/virtualEvents/webinars/getByUserIdAndRole(userId='{userId}',role='{role}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuseridandrole?view=graph-rest-1.0" + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/getByUserRole(role='{role}')", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarByUserRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0", + "Uri": "/solutions/virtualEvents/webinars/getByUserRole(role='{role}')", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualeventwebinar-getbyuserrole?view=graph-rest-1.0" + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/$count", + "ApiVersion": "v1.0", "Variants": [ "Get" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarRegistrationCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "List" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecordCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionAttendanceReportCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/$count", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "GET", "Command": "Get-MgVirtualEventWebinarSessionCount", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/$count", + "ApiVersion": "v1.0", "Variants": [ "Get", "GetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaGroupSitePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Grant-MgBetaSharePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", "Uri": "/shares/{sharedDriveItem-id}/permission/grant", + "ApiVersion": "beta", + "Variants": [ + "Grant", + "GrantExpanded", + "GrantViaIdentity", + "GrantViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -326927,149 +341456,158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Grant-MgBetaSharePermission", - "Variants": [ - "Grant", - "GrantExpanded", - "GrantViaIdentity", - "GrantViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaSitePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaUserDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgBetaUserDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "beta", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgGroupDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgGroupDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgGroupSitePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Grant-MgSharePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", "Uri": "/shares/{sharedDriveItem-id}/permission/grant", + "ApiVersion": "v1.0", + "Variants": [ + "Grant", + "GrantExpanded", + "GrantViaIdentity", + "GrantViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -327096,314 +341634,332 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Grant-MgSharePermission", - "Variants": [ - "Grant", - "GrantExpanded", - "GrantViaIdentity", - "GrantViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgSitePermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgUserDriveItemPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Grant-MgUserDriveRootPermission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/grant", + "ApiVersion": "v1.0", "Variants": [ "Grant", "GrantExpanded", "GrantViaIdentity", "GrantViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-grant?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/chats/{chat-id}/hideForUser", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Hide-MgBetaChatForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/hideForUser", + "ApiVersion": "beta", "Variants": [ "Hide", "HideExpanded", "HideViaIdentity", "HideViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/hideForUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Hide-MgBetaUserChatForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/hideForUser", + "ApiVersion": "beta", "Variants": [ "Hide", "HideExpanded", "HideViaIdentity", "HideViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/hideForUser", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Hide-MgChatForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/hideForUser", + "ApiVersion": "v1.0", "Variants": [ "Hide", "HideExpanded", "HideViaIdentity", "HideViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/hideForUser", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Hide-MgUserChatForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/hideForUser", + "ApiVersion": "v1.0", "Variants": [ "Hide", "HideExpanded", "HideViaIdentity", "HideViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-hideforuser?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/importAppleDeviceIdentityList", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentityAppleDeviceIdentityList", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/importAppleDeviceIdentityList", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentityResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentityResult" }, { - "Uri": "/deviceManagement/importedDeviceIdentities/importDeviceIdentityList", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaDeviceManagementImportedDeviceIdentityList", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities/importDeviceIdentityList", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentityResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedDeviceIdentityResult" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/importOffice365DeviceConfigurationPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaDeviceManagementTemplateMigratableToOffice365DeviceConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/importOffice365DeviceConfigurationPolicies", + "ApiVersion": "beta", "Variants": [ "Import", "ImportViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/templates/importOffice365DeviceConfigurationPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaDeviceManagementTemplateOffice365DeviceConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/importOffice365DeviceConfigurationPolicies", + "ApiVersion": "beta", "Variants": [ "Import" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/importResourceActions", + "ApiVersion": "beta", "Variants": [ "Import", "ImportExpanded", "ImportViaIdentity", "ImportViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Import-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-importedwindowsautopilotdeviceidentity-import?view=graph-rest-1.0", + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/import", + "ApiVersion": "v1.0", "Variants": [ "Import", "ImportExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-importedwindowsautopilotdeviceidentity-import?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-activate?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/activate", + "ApiVersion": "beta", + "Variants": [ + "Activate", + "ActivateViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -327422,19 +341978,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Initialize-MgBetaComplianceEdiscoveryCaseCustodian", - "Variants": [ - "Activate", - "ActivateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-activate?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgBetaDeviceManagementComanagedDeviceEsim", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", + "Variants": [ + "Activate", + "ActivateExpanded", + "ActivateViaIdentity", + "ActivateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -327453,21 +342012,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Initialize-MgBetaDeviceManagementComanagedDeviceEsim", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgBetaDeviceManagementManagedDeviceEsim", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/activateDeviceEsim", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -327486,21 +342046,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Initialize-MgBetaDeviceManagementManagedDeviceEsim", - "Variants": [ - "Activate", - "ActivateExpanded", - "ActivateViaIdentity", - "ActivateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgBetaEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/activate", + "ApiVersion": "beta", + "Variants": [ + "Activate", + "ActivateViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -327519,79 +342078,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Initialize-MgBetaEducationClassAssignment", - "Variants": [ - "Activate", - "ActivateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/activate", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgBetaEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/activate", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/activate", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgBetaEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/activate", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/activate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/activate", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/activate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/activate", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/activate", + "ApiVersion": "beta", + "Variants": [ + "Activate", + "ActivateViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -327610,35 +342174,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Initialize-MgBetaSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "Activate", - "ActivateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/activateDeviceEsim", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgBetaUserManagedDeviceEsim", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/activateDeviceEsim", + "ApiVersion": "beta", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/activate", + "ApiVersion": "v1.0", + "Variants": [ + "Activate", + "ActivateViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -327657,79 +342223,84 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Initialize-MgEducationClassAssignment", - "Variants": [ - "Activate", - "ActivateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/activate", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/activate", + "ApiVersion": "v1.0", "Variants": [ "Activate", "ActivateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/activate", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/activate", + "ApiVersion": "v1.0", "Variants": [ "Activate", "ActivateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-activate?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/activate", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/activate", + "ApiVersion": "v1.0", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/activate", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Initialize-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/activate", + "ApiVersion": "v1.0", "Variants": [ "Activate", "ActivateExpanded", "ActivateViaIdentity", "ActivateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-activate?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Initialize-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/activate", + "ApiVersion": "v1.0", + "Variants": [ + "Activate", + "ActivateViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -327748,19 +342319,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Initialize-MgSecurityCaseEdiscoveryCaseCustodian", - "Variants": [ - "Activate", - "ActivateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-activate?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgAbortPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0", "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/abort", + "ApiVersion": "v1.0", + "Variants": [ + "Abort", + "AbortExpanded", + "AbortViaIdentity", + "AbortViaIdentityExpanded" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic.All", @@ -327787,179 +342361,190 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Invoke-MgAbortPrintPrinterJob", - "Variants": [ - "Abort", - "AbortExpanded", - "AbortViaIdentity", - "AbortViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/abort", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAbortPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/abort", + "ApiVersion": "v1.0", "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptGroupCalendarEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/accept", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/accept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptGroupEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/acceptRecommendations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/acceptRecommendations", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/accept", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/accept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptUserEventInstanceTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgAcceptUserEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "v1.0", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgAnswerCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/answer", + "ApiVersion": "v1.0", + "Variants": [ + "Answer", + "AnswerExpanded", + "AnswerViaIdentity", + "AnswerViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -327978,35 +342563,37 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgAnswerCommunicationCall", - "Variants": [ - "Answer", - "AnswerExpanded", - "AnswerViaIdentity", - "AnswerViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/archive", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgArchiveServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/archive", + "ApiVersion": "v1.0", "Variants": [ "Archive", "ArchiveExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgArchiveTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-1.0", "Uri": "/teams/{team-id}/archive", + "ApiVersion": "v1.0", + "Variants": [ + "Archive", + "ArchiveExpanded", + "ArchiveViaIdentity", + "ArchiveViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -328041,21 +342628,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Invoke-MgArchiveTeam", - "Variants": [ - "Archive", - "ArchiveExpanded", - "ArchiveViaIdentity", - "ArchiveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/asHierarchy", + "ApiVersion": "v1.0", + "Variants": [ + "As", + "AsViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -328074,19 +342660,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Invoke-MgAsSecurityCaseEdiscoveryCaseTagHierarchy", - "Variants": [ - "As", - "AsViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0", "Uri": "/directory/federationConfigurations/availableProviderTypes", + "ApiVersion": "v1.0", + "Variants": [ + "Available" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -328105,18 +342691,19 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Invoke-MgAvailableDirectoryFederationConfigurationProviderType", - "Variants": [ - "Available" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgAvailableIdentityProviderType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0", "Uri": "/identity/identityProviders/availableProviderTypes", + "ApiVersion": "v1.0", + "Variants": [ + "Available" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -328135,34 +342722,37 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Invoke-MgAvailableIdentityProviderType", - "Variants": [ - "Available" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/batchRecordDecisions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/batchRecordDecisions", + "ApiVersion": "v1.0", "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0", "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/beginOnboarding", + "ApiVersion": "v1.0", + "Variants": [ + "Begin", + "BeginViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -328181,19 +342771,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Invoke-MgBeginDeviceManagementRemoteAssistancePartnerOnboarding", - "Variants": [ - "Begin", - "BeginViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-remoteassistance-remoteassistancepartner-beginonboarding?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaAbortPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/abort", + "ApiVersion": "beta", + "Variants": [ + "Abort", + "AbortExpanded", + "AbortViaIdentity", + "AbortViaIdentityExpanded" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic.All", @@ -328220,265 +342813,282 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Invoke-MgBetaAbortPrintPrinterJob", - "Variants": [ - "Abort", - "AbortExpanded", - "AbortViaIdentity", - "AbortViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/abort", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAbortPrintPrinterShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/abort", + "ApiVersion": "beta", "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/abort", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAbortPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/abort", + "ApiVersion": "beta", "Variants": [ "Abort", "AbortExpanded", "AbortViaIdentity", "AbortViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-abort?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/accept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupCalendarEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/accept", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/accept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptGroupEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/acceptRecommendations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptIdentityGovernanceAccessReviewDecisionInstanceRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/acceptRecommendations", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/acceptRecommendations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptIdentityGovernanceAccessReviewDefinitionInstanceRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/acceptRecommendations", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/accept", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/accept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/accept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-accept?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventInstanceTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/tentativelyAccept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptUserEventTentatively", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/tentativelyAccept", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptExpanded", "AcceptViaIdentity", "AcceptViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-tentativelyaccept?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/acceptRecommendations", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAcceptUserPendingAccessReviewInstanceRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/acceptRecommendations", + "ApiVersion": "beta", "Variants": [ "Accept", "AcceptViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-acceptrecommendations?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignResourceAccountFromDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAccountDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignResourceAccountFromDevice", + "ApiVersion": "beta", "Variants": [ "Account", "AccountViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/allowNextEnrollment", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAllowDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceNextEnrollment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/allowNextEnrollment", + "ApiVersion": "beta", "Variants": [ "Allow", "AllowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/allowNextEnrollment", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaAllowDeviceManagementWindowsAutopilotDeviceIdentityNextEnrollment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/allowNextEnrollment", + "ApiVersion": "beta", "Variants": [ "Allow", "AllowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaAnswerCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/answer", + "ApiVersion": "beta", + "Variants": [ + "Answer", + "AnswerExpanded", + "AnswerViaIdentity", + "AnswerViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -328497,21 +343107,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaAnswerCommunicationCall", - "Variants": [ - "Answer", - "AnswerExpanded", - "AnswerViaIdentity", - "AnswerViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-answer?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAppDeviceManagementComanagedDeviceDiagnostic", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/appDiagnostics(upn='{upn}')", + "ApiVersion": "beta", + "Variants": [ + "App", + "AppViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -328530,19 +343139,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaAppDeviceManagementComanagedDeviceDiagnostic", + "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAppDeviceManagementManagedDeviceDiagnostic", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/appDiagnostics(upn='{upn}')", + "ApiVersion": "beta", "Variants": [ "App", "AppViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/appDiagnostics(upn='{upn}')", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -328561,49 +343171,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaAppDeviceManagementManagedDeviceDiagnostic", - "Variants": [ - "App", - "AppViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" }, { - "Uri": "/users/{user-id}/managedDevices/appDiagnostics(upn='{upn}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAppUserManagedDeviceDiagnostic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/appDiagnostics(upn='{upn}')", + "ApiVersion": "beta", "Variants": [ "App", "AppViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPowerliftIncidentMetadata" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/archive", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveGroupPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaArchivePlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/archive", + "ApiVersion": "beta", + "Variants": [ + "Archive", + "ArchiveExpanded", + "ArchiveViaIdentity", + "ArchiveViaIdentityExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -328622,35 +343237,37 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Invoke-MgBetaArchivePlannerPlan", - "Variants": [ - "Archive", - "ArchiveExpanded", - "ArchiveViaIdentity", - "ArchiveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/archive", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-archive?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaArchiveTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-beta", "Uri": "/teams/{team-id}/archive", + "ApiVersion": "beta", + "Variants": [ + "Archive", + "ArchiveExpanded", + "ArchiveViaIdentity", + "ArchiveViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -328685,85 +343302,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaArchiveTeam", - "Variants": [ - "Archive", - "ArchiveExpanded", - "ArchiveViaIdentity", - "ArchiveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-archive?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/archive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/archive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamPrimaryChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/archive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveTeamworkDeletedTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-archive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/archive", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaArchiveUserPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/archive", + "ApiVersion": "beta", "Variants": [ "Archive", "ArchiveExpanded", "ArchiveViaIdentity", "ArchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/tags/asHierarchy", + "ApiVersion": "beta", + "Variants": [ + "As", + "AsViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -328782,19 +343402,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Invoke-MgBetaAsComplianceEdiscoveryCaseTagHierarchy", + "OutputType": "IMicrosoftGraphEdiscoveryTag" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewtag-ashierarchy?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/asHierarchy", + "ApiVersion": "beta", "Variants": [ "As", "AsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/asHierarchy", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -328813,89 +343434,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Invoke-MgBetaAsSecurityCaseEdiscoveryCaseTagHierarchy", - "Variants": [ - "As", - "AsViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewtag-ashierarchy?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementCloudPcRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementCloudPcRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDeviceManagementRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDeviceManagementRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementDirectoryRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAssignedRoleManagementDirectoryRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", + "Variants": [ + "Assigned", + "AssignedViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.Read.Directory", @@ -328922,103 +343549,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaAssignedRoleManagementDirectoryRoleDefinitionPrincipal", - "Variants": [ - "Assigned", - "AssignedViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEnterpriseAppRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementEntitlementManagementRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementExchangeRoleDefinitionInheritPermissionFromPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaAssignedRoleManagementExchangeRoleDefinitionPrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta", + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/assignedPrincipals(transitive=@transitive,directoryScopeType='@directoryScopeType',directoryScopeId='@directoryScopeId')", + "ApiVersion": "beta", "Variants": [ "Assigned", "AssignedViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroledefinition-assignedprincipals?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAvailableDirectoryFederationConfigurationProviderType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta", "Uri": "/directory/federationConfigurations/availableProviderTypes", + "ApiVersion": "beta", + "Variants": [ + "Available" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -329037,18 +343670,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Invoke-MgBetaAvailableDirectoryFederationConfigurationProviderType", - "Variants": [ - "Available" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaAvailableIdentityProviderType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta", "Uri": "/identity/identityProviders/availableProviderTypes", + "ApiVersion": "beta", + "Variants": [ + "Available" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "IdentityProvider.Read.All", @@ -329067,66 +343701,71 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Invoke-MgBetaAvailableIdentityProviderType", - "Variants": [ - "Available" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityproviderbase-availableprovidertypes?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/batchRecordDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBatchIdentityGovernanceAccessReviewDecisionInstanceRecordDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/batchRecordDecisions", + "ApiVersion": "beta", "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/batchRecordDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBatchIdentityGovernanceAccessReviewDefinitionInstanceRecordDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/batchRecordDecisions", + "ApiVersion": "beta", "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/batchRecordDecisions", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBatchUserPendingAccessReviewInstanceRecordDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/batchRecordDecisions", + "ApiVersion": "beta", "Variants": [ "Batch", "BatchExpanded", "BatchViaIdentity", "BatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-batchrecorddecisions?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaBeginDeviceManagementRemoteAssistancePartnerOnboarding", + "ApiReferenceLink": null, "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}/beginOnboarding", + "ApiVersion": "beta", + "Variants": [ + "Begin", + "BeginViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -329145,335 +343784,359 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaBeginDeviceManagementRemoteAssistancePartnerOnboarding", - "Variants": [ - "Begin", - "BeginViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/decryptBuffer", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferGroupSiteInformationProtectionDecrypt", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/decryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/encryptBuffer", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferGroupSiteInformationProtectionEncrypt", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/encryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBufferEncryptionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "Uri": "/informationProtection/decryptBuffer", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferInformationProtectionDecrypt", + "ApiReferenceLink": null, + "Uri": "/informationProtection/decryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/encryptBuffer", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferInformationProtectionEncrypt", + "ApiReferenceLink": null, + "Uri": "/informationProtection/encryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBufferEncryptionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "Uri": "/sites/{site-id}/informationProtection/decryptBuffer", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferSiteInformationProtectionDecrypt", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/decryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/informationProtection/encryptBuffer", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferSiteInformationProtectionEncrypt", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/encryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBufferEncryptionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "Uri": "/users/{user-id}/informationProtection/decryptBuffer", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferUserInformationProtectionDecrypt", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/decryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/encryptBuffer", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBufferUserInformationProtectionEncrypt", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/encryptBuffer", + "ApiVersion": "beta", "Variants": [ "Buffer", "BufferExpanded", "BufferViaIdentity", "BufferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBufferEncryptionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphBufferEncryptionResult" }, { - "Uri": "/deviceManagement/comanagedDevices/bulkSetCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementComanagedDeviceSetCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/bulkSetCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/deviceManagement/managedDevices/bulkSetCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementManagedDeviceSetCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/bulkSetCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/bulkResize", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkDeviceManagementVirtualEndpointCloudPcResize", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/bulkResize", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "Uri": "/deviceManagement/comanagedDevices/bulkReprovisionCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionDeviceManagementComanagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/deviceManagement/managedDevices/bulkReprovisionCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionDeviceManagementManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/users/{user-id}/managedDevices/bulkReprovisionCloudPc", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkReprovisionUserManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/bulkReprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkreprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/deviceManagement/comanagedDevices/bulkRestoreCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreDeviceManagementComanagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/bulkRestoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/deviceManagement/managedDevices/bulkRestoreCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreDeviceManagementManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/bulkRestoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/users/{user-id}/managedDevices/bulkRestoreCloudPc", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkRestoreUserManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/bulkRestoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulkrestorecloudpc?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/users/{user-id}/cloudPCs/bulkResize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkUserCloudPcResize", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/bulkResize", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-bulkresize?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcRemoteActionResult" }, { - "Uri": "/users/{user-id}/managedDevices/bulkSetCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaBulkUserManagedDeviceSetCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/bulkSetCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Bulk", "BulkExpanded", "BulkViaIdentity", "BulkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-bulksetcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkRemoteActionResult" }, { - "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaCalendarGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "beta", "Variants": [ "Calendar", "CalendarViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaCalendarUserCalendarAllowedCalendarSharingRoles", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "beta", "Variants": [ "Calendar", "Calendar1", "CalendarViaIdentity", "CalendarViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaCheckinDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "beta", + "Variants": [ + "Checkin", + "CheckinExpanded", + "CheckinViaIdentity", + "CheckinViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -329500,101 +344163,105 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaCheckinDriveItem", - "Variants": [ - "Checkin", - "CheckinExpanded", - "CheckinViaIdentity", - "CheckinViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckinDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/checkin", + "ApiVersion": "beta", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkin", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckinGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "beta", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckinGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkin", + "ApiVersion": "beta", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkin", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckinUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "beta", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckinUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/checkin", + "ApiVersion": "beta", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaCheckoutDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "beta", + "Variants": [ + "Checkout", + "CheckoutViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -329621,403 +344288,431 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaCheckoutDriveItem", - "Variants": [ - "Checkout", - "CheckoutViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckoutDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/checkout", + "ApiVersion": "beta", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkout", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckoutGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "beta", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckoutGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkout", + "ApiVersion": "beta", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkout", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckoutUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "beta", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCheckoutUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/checkout", + "ApiVersion": "beta", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/cleanWindowsDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCleanDeviceManagementComanagedDeviceWindowsDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCleanDeviceManagementManagedDeviceWindowsDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCleanUserManagedDeviceWindowsDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "beta", "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/timeCards/clockIn", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaClockTeamScheduleTimeCardIn", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockin?view=graph-rest-beta", + "Uri": "/teams/{team-id}/schedule/timeCards/clockIn", + "ApiVersion": "beta", "Variants": [ "Clock", "ClockExpanded", "ClockViaIdentity", "ClockViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockin?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/clockOut", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaClockTeamScheduleTimeCardOut", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockout?view=graph-rest-beta", + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/clockOut", + "ApiVersion": "beta", "Variants": [ "Clock", "ClockExpanded", "ClockViaIdentity", "ClockViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-clockout?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/security/alerts_v2/{alert-id}/comments/$count", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaCommentSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}/comments/$count", + "ApiVersion": "beta", "Variants": [ "Comment", "CommentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "beta", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/consentToDataSharing", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaConsentDeviceManagementDataSharingConsentToDataSharing", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}/consentToDataSharing", + "ApiVersion": "beta", "Variants": [ "Consent", "ConsentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "Uri": "/communications/onlineMeetings/createOrGet", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaCreateOrGetCommunicationOnlineMeeting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings/createOrGet", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaCreateOrGetUserOnlineMeeting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta", "Uri": "/users/{user-id}/onlineMeetings/createOrGet", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -330036,21 +344731,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Invoke-MgBetaCreateOrGetUserOnlineMeeting", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaCustomDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags/hasCustomRoleScopeTag", + "ApiVersion": "beta", + "Variants": [ + "Custom" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330085,18 +344778,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaCustomDeviceManagementRoleScopeTag", - "Variants": [ - "Custom" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaDeactivateEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "beta", + "Variants": [ + "Deactivate", + "DeactivateViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -330115,111 +344810,120 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaDeactivateEducationClassAssignment", - "Variants": [ - "Deactivate", - "DeactivateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/deactivate", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeactivateEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "beta", "Variants": [ "Deactivate", "DeactivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/deactivate", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeactivateEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "beta", "Variants": [ "Deactivate", "DeactivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeclineGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", + "ApiVersion": "beta", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/decline", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeclineGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/decline", + "ApiVersion": "beta", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/decline", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeclineUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/decline", + "ApiVersion": "beta", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeclineUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "ApiVersion": "beta", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaDeprovisionDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", + "Variants": [ + "Deprovision", + "DeprovisionExpanded", + "DeprovisionViaIdentity", + "DeprovisionViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330238,21 +344942,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaDeprovisionDeviceManagementComanagedDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaDeprovisionDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deprovision", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330271,229 +344976,241 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaDeprovisionDeviceManagementManagedDevice", - "Variants": [ - "Deprovision", - "DeprovisionExpanded", - "DeprovisionViaIdentity", - "DeprovisionViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deprovision", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeprovisionUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deprovision", + "ApiVersion": "beta", "Variants": [ "Deprovision", "DeprovisionExpanded", "DeprovisionViaIdentity", "DeprovisionViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignedAccessMultiModeProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeviceManagementDeviceConfigurationAssignedAccessMultiModeProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignedAccessMultiModeProfiles", + "ApiVersion": "beta", "Variants": [ "Access", "AccessExpanded", "AccessViaIdentity", "AccessViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/windowsPrivacyAccessControls", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDeviceManagementDeviceConfigurationWindowsPrivacyAccessControl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/windowsPrivacyAccessControls", + "ApiVersion": "beta", "Variants": [ "Access1", "AccessExpanded1", "AccessViaIdentity1", "AccessViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/impactedResources/{impactedResource-id}/dismiss", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta", + "Uri": "/directory/impactedResources/{impactedResource-id}/dismiss", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/recommendations/{recommendation-id}/dismiss", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-dismiss?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/dismiss", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-dismiss?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/dismiss", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissDirectoryRecommendationImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/dismiss", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissExpanded", "DismissViaIdentity", "DismissViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-dismiss?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissGroupCalendarEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissGroupEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/dismiss", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissRiskyServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-beta", + "Uri": "/identityProtection/riskyServicePrincipals/dismiss", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/dismiss", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissRiskyUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-dismiss?view=graph-rest-beta", + "Uri": "/identityProtection/riskyUsers/dismiss", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyusers-dismiss?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissUserEventInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDismissUserEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", + "ApiVersion": "beta", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/shutDown", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownDeviceManagementComanagedDeviceShut", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Variants": [ "Down", "DownViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownDeviceManagementManagedDeviceShut", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Variants": [ "Down", "DownViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest", + "ApiVersion": "beta", + "Variants": [ + "Download" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -330512,18 +345229,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", - "Variants": [ - "Download" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaDownloadDeviceManagementComanagedDeviceAppDiagnostic", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/downloadAppDiagnostics", + "ApiVersion": "beta", + "Variants": [ + "Download", + "DownloadExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330542,33 +345261,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaDownloadDeviceManagementComanagedDeviceAppDiagnostic", - "Variants": [ - "Download", - "DownloadExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementComanagedDeviceLogCollectionRequestDeviceLog", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", + "ApiVersion": "beta", "Variants": [ "Download", "DownloadViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaDownloadDeviceManagementManagedDeviceAppDiagnostic", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/downloadAppDiagnostics", + "ApiVersion": "beta", + "Variants": [ + "Download", + "DownloadExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330587,77 +345308,82 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaDownloadDeviceManagementManagedDeviceAppDiagnostic", - "Variants": [ - "Download", - "DownloadExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownloadDeviceManagementManagedDeviceLogCollectionRequestDeviceLog", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", + "ApiVersion": "beta", "Variants": [ "Download", "DownloadViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/downloadAppDiagnostics", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownloadUserManagedDeviceAppDiagnostic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/downloadAppDiagnostics", + "ApiVersion": "beta", "Variants": [ "Download", "DownloadExpanded", "DownloadViaIdentity", "DownloadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownloadUserManagedDeviceLogCollectionRequestDeviceLog", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/downloadDeviceLogs", + "ApiVersion": "beta", "Variants": [ "Download", "DownloadViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaDownUserManagedDeviceShut", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "beta", "Variants": [ "Down", "DownViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaEnrollDeviceManagementComanagedDeviceNowAction", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/enrollNowAction", + "ApiVersion": "beta", + "Variants": [ + "Enroll", + "EnrollViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330676,19 +345402,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaEnrollDeviceManagementComanagedDeviceNowAction", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaEnrollDeviceManagementManagedDeviceNowAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enrollNowAction", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/enrollNowAction", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -330707,157 +345434,167 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaEnrollDeviceManagementManagedDeviceNowAction", - "Variants": [ - "Enroll", - "EnrollViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enrollNowAction", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaEnrollUserManagedDeviceNowAction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/enrollNowAction", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/enrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuDeploymentAudienceExclusionAssetGraphBPreId", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceExclusionAssetById", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/enrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/enrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuDeploymentAudienceMemberAssetGraphBPreId", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesDeploymentAudienceMemberAssetById", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/enrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/enrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuPolicyAudienceExclusionAsset", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesPolicyAudienceExclusionAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/enrollAssets", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/enrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuPolicyAudienceExclusionAssetGraphBPreId", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesPolicyAudienceExclusionAssetById", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/enrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/enrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuPolicyAudienceMemberAsset", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesPolicyAudienceMemberAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/enrollAssets", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/enrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuPolicyAudienceMemberAssetGraphBPreId", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesPolicyAudienceMemberAssetById", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/enrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded", "EnrollViaIdentity", "EnrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/enrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuUpdatableAsset", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/enrollAssets", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/enrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaEnrollWuUpdatableAssetGraphBPreId", + "Method": "POST", "Command": "Invoke-MgBetaEnrollWindowsUpdatesUpdatableAssetById", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/enrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Enroll", "EnrollExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-estimatestatistics?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/estimateStatistics", + "ApiVersion": "beta", + "Variants": [ + "Estimate", + "EstimateViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -330876,19 +345613,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Invoke-MgBetaEstimateComplianceEdiscoveryCaseSourceCollectionStatistics", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/estimateStatistics", + "ApiVersion": "beta", "Variants": [ "Estimate", "EstimateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-sourcecollection-estimatestatistics?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/estimateStatistics", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -330907,19 +345645,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Invoke-MgBetaEstimateSecurityCaseEdiscoveryCaseSearchStatistics", - "Variants": [ - "Estimate", - "EstimateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExcuseEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse", + "ApiVersion": "beta", + "Variants": [ + "Excuse", + "ExcuseViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -330938,47 +345677,50 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaExcuseEducationClassAssignmentSubmission", - "Variants": [ - "Excuse", - "ExcuseViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExcuseEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse", + "ApiVersion": "beta", "Variants": [ "Excuse", "ExcuseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExcuseEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/excuse", + "ApiVersion": "beta", "Variants": [ "Excuse", "ExcuseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-excuse?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExecuteDeviceManagementComanagedDeviceAction", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/executeAction", + "ApiVersion": "beta", + "Variants": [ + "Execute", + "ExecuteExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -331005,19 +345747,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaExecuteDeviceManagementComanagedDeviceAction", + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExecuteDeviceManagementManagedDeviceAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/executeAction", + "ApiVersion": "beta", "Variants": [ "Execute", "ExecuteExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/executeAction", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -331044,51 +345787,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaExecuteDeviceManagementManagedDeviceAction", - "Variants": [ - "Execute", - "ExecuteExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" }, { - "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/executeAction", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExecuteDeviceManagementWindowsDriverUpdateProfileAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/executeAction", + "ApiVersion": "beta", "Variants": [ "Execute", "ExecuteExpanded", "ExecuteViaIdentity", "ExecuteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkDriverActionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphBulkDriverActionResult" }, { - "Uri": "/users/{user-id}/managedDevices/executeAction", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExecuteUserManagedDeviceAction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/executeAction", + "ApiVersion": "beta", "Variants": [ "Execute", "ExecuteExpanded", "ExecuteViaIdentity", "ExecuteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphBulkManagedDeviceActionResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaExperienceDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsSummarizedDeviceScopes", + "ApiVersion": "beta", + "Variants": [ + "Experience", + "Experience1" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -331107,19 +345853,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaExperienceDeviceManagement", - "Variants": [ - "Experience", - "Experience1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScopeSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScopeSummary" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExtractDriveItemSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "beta", + "Variants": [ + "Extract", + "ExtractViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read.All", @@ -331154,77 +345901,82 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaExtractDriveItemSensitivityLabel", - "Variants": [ - "Extract", - "ExtractViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractGroupDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractGroupDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/extractLabel", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/extractLabel", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractExpanded", "ExtractViaIdentity", "ExtractViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExtractInformationProtectionPolicyLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", "Uri": "/informationProtection/policy/labels/extractLabel", + "ApiVersion": "beta", + "Variants": [ + "Extract", + "ExtractExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -331243,93 +345995,101 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Invoke-MgBetaExtractInformationProtectionPolicyLabel", - "Variants": [ - "Extract", - "ExtractExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "Uri": "/security/informationProtection/sensitivityLabels/extractContentLabel", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractSecurityInformationProtectionSensitivityLabelContentLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta", + "Uri": "/security/informationProtection/sensitivityLabels/extractContentLabel", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityContentLabel" }, { - "Uri": "/sites/{site-id}/informationProtection/policy/labels/extractLabel", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", + "Uri": "/sites/{site-id}/informationProtection/policy/labels/extractLabel", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractExpanded", "ExtractViaIdentity", "ExtractViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractUserDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractUserDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels/extractLabel", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaExtractUserInformationProtectionPolicyLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta", + "Uri": "/users/{user-id}/informationProtection/policy/labels/extractLabel", + "ApiVersion": "beta", "Variants": [ "Extract", "ExtractExpanded", "ExtractViaIdentity", "ExtractViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-extractlabel?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionContentLabel" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaExtractUserSecurityInformationProtectionSensitivityLabelContentLabel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta", "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/extractContentLabel", + "ApiVersion": "beta", + "Variants": [ + "Extract", + "ExtractExpanded", + "ExtractViaIdentity", + "ExtractViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -331348,49 +346108,50 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Invoke-MgBetaExtractUserSecurityInformationProtectionSensitivityLabelContentLabel", - "Variants": [ - "Extract", - "ExtractExpanded", - "ExtractViaIdentity", - "ExtractViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityContentLabel", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-extractcontentlabel?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSecurityContentLabel" }, { - "Uri": "/admin/serviceAnnouncement/messages/favorite", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFavoriteServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/favorite", + "ApiVersion": "beta", "Variants": [ "Favorite", "FavoriteExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterApplicationSynchronizationJobSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -331409,19 +346170,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFilterApplicationSynchronizationTemplateSchemaOperator", + "OutputType": "IMicrosoftGraphFilterOperatorSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -331440,33 +346202,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta", "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -331485,19 +346249,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageAssignmentRequestByCurrentUser", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -331516,19 +346281,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterEntitlementManagementAccessPackageByCurrentUser", + "OutputType": "IMicrosoftGraphAccessPackage" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterEntitlementManagementAssignmentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -331547,75 +346313,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterEntitlementManagementAssignmentRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "Uri": "/identityGovernance/accessReviews/decisions/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceStageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDecisionInstanceStageDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-beta", "Uri": "/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -331634,19 +346405,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -331665,19 +346437,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -331696,19 +346469,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -331727,19 +346501,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewStage" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -331758,19 +346533,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta", + "Uri": "/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -331789,19 +346565,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestByCurrentUser", + "OutputType": "IMicrosoftGraphAppConsentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta", + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -331820,61 +346597,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePermissionManagementScheduledPermissionApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePermissionManagementScheduledPermissionRequestByCurrentUser", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduledPermissionsRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-beta", "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -331893,19 +346674,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -331924,19 +346706,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -331955,19 +346738,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -331986,19 +346770,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -332017,19 +346802,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -332048,33 +346834,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", "Uri": "/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -332117,19 +346905,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -332172,19 +346961,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -332227,19 +347017,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -332282,19 +347073,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -332337,19 +347129,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -332387,220 +347180,235 @@ "Name": "RoleEligibilitySchedule.ReadWrite.Directory", "Description": "Read, update, and delete all eligible role assignments for your company's directory", "FullDescription": "Allows the app to read and manage the eligible role-based access control (RBAC) assignments for your company's directory, on your behalf. This includes managing eligible directory role membership, and reading directory role templates, directory roles and eligible memberships.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEnterpriseAppRoleEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "beta", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -332619,19 +347427,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationJobSchemaOperator", + "OutputType": "IMicrosoftGraphFilterOperatorSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -332650,159 +347459,170 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFilterServicePrincipalSynchronizationTemplateSchemaOperator", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { - "Uri": "/users/{user-id}/appConsentRequestsForApproval/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserAppConsentRequestForApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta", + "Uri": "/users/{user-id}/appConsentRequestsForApproval/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterByCurrentUser?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "Uri": "/users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserAppConsentRequestForApprovalUserConsentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta", + "Uri": "/users/{user-id}/appConsentRequestsForApproval/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterByCurrentUser?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/users/{user-id}/approvals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/approvals/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-list-decisions?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFilterUserPendingAccessReviewInstanceStageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", + "ApiVersion": "beta", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/financials/companies/{company-id}/journals/{journal-id}/post", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/{journal-id}/post", + "ApiVersion": "beta", "Variants": [ "Post", "PostViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/post", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanyPurchaseInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/post", + "ApiVersion": "beta", "Variants": [ "Post", "PostViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/postAndSend", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanySaleInvoiceAndSend", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/postAndSend", + "ApiVersion": "beta", "Variants": [ "Post", "PostViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/post", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFinancialCompanySalesInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/post", + "ApiVersion": "beta", "Variants": [ "Post", "PostViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaFollowDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "beta", + "Variants": [ + "Follow", + "FollowViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -332853,121 +347673,131 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaFollowDriveItem", - "Variants": [ - "Follow", - "FollowViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFollowDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/follow", + "ApiVersion": "beta", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/follow", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFollowGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "beta", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFollowGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/follow", + "ApiVersion": "beta", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/follow", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFollowUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "beta", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaFollowUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/follow", + "ApiVersion": "beta", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/domains/{domain-id}/forceDelete", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForceDomainDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-beta", + "Uri": "/domains/{domain-id}/forceDelete", + "ApiVersion": "beta", "Variants": [ "Force", "ForceExpanded", "ForceViaIdentity", "ForceViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaForwardGroupConversationThreadPost", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "beta", + "Variants": [ + "Forward", + "ForwardExpanded", + "ForwardViaIdentity", + "ForwardViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -332986,53 +347816,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaForwardGroupConversationThreadPost", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaForwardGroupConversationThreadPostInReplyTo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaForwardGroupConversationThreadPostInReplyTo", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaForwardGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/forward", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaForwardGroupEvent", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaForwardGroupThreadPost", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -333051,131 +347884,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaForwardGroupThreadPost", - "Variants": [ - "Forward", - "ForwardExpanded", - "ForwardViaIdentity", - "ForwardViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardGroupThreadPostInReplyTo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/forward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaForwardUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/forward", + "ApiVersion": "beta", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaFunctionApplicationSynchronizationJobSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "beta", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "beta", + "Variants": [ + "Function", + "FunctionViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -333194,19 +348033,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFunctionApplicationSynchronizationTemplateSchema", + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "beta", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -333225,19 +348065,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationJobSchema", + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "beta", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -333256,35 +348097,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaFunctionServicePrincipalSynchronizationTemplateSchema", - "Variants": [ - "Function", - "FunctionViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "Uri": "/chats/{chat-id}/unhideForUser", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaGraphChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/unhideForUser", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaGraphDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement/scopedForResource(resource='{resource}')", + "ApiVersion": "beta", + "Variants": [ + "Graph", + "GraphViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -333319,78 +348162,75 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaGraphDeviceManagement", - "Variants": [ - "Graph", - "GraphViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/unshareForSchoolDataSyncService", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaGraphDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/unshareForSchoolDataSyncService", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaGraphDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/sharedWithMe", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/unsubscribeByMail", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaGraphGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-beta", + "Uri": "/groups/{group-id}/unsubscribeByMail", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaGraphGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/sharedWithMe", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/reports/authenticationMethods/usersRegisteredByFeature", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaGraphReportAuthenticationMethod", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-beta", + "Uri": "/reports/authenticationMethods/usersRegisteredByFeature", + "ApiVersion": "beta", "Variants": [ "Graph", "Graph1", @@ -333399,304 +348239,333 @@ "GraphViaIdentity", "GraphViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-beta" + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/unhideForUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaGraphUserChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/unhideForUser", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaGraphUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/sharedWithMe", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/unenrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaGraphWuDeploymentAudienceExclusion", + "Method": "POST", "Command": "Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/unenrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/unenrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaGraphWuDeploymentAudienceMember", + "Method": "POST", "Command": "Invoke-MgBetaGraphWindowsUpdatesDeploymentAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/unenrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/unenrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaGraphWuPolicyAudienceExclusion", + "Method": "POST", "Command": "Invoke-MgBetaGraphWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/unenrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/unenrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaGraphWuPolicyAudienceMember", + "Method": "POST", "Command": "Invoke-MgBetaGraphWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/unenrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/unenrollAssetsById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaGraphWuUpdatableAsset", + "Method": "POST", "Command": "Invoke-MgBetaGraphWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/unenrollAssetsById", + "ApiVersion": "beta", "Variants": [ "Graph", "GraphExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementAndroidManagedAppProtectionPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementiOSLobAppProvisioningConfigurationPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementiOSManagedAppProtectionPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementMdmWindowsInformationProtectionPolicyPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceAppManagement/mobileApps/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementMobileAppPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceAppManagementTargetedManagedAppConfigurationPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceCompliancePolicyPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/deviceConfigurations/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceConfigurationPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementDeviceEnrollmentConfigurationPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/deviceManagementScripts/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementScriptPayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementWindowsAutopilotDeploymentProfilePayloadLink", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { - "Uri": "/deviceManagement/zebraFotaConnector/hasActiveDeployments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasDeviceManagementZebraFotaConnectorActiveDeployment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/zebraFotaConnector/hasActiveDeployments", + "ApiVersion": "beta", "Variants": [ "Has" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/hasPayloadLinks", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaHasUserDeviceEnrollmentConfigurationPayloadLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/hasPayloadLinks", + "ApiVersion": "beta", "Variants": [ "Link", "LinkExpanded", "LinkViaIdentity", "LinkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHasPayloadLinkResultItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaHaveTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", "Uri": "/teams/{team-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "beta", + "Variants": [ + "Have", + "HaveViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -333715,61 +348584,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaHaveTeamChannel", - "Variants": [ - "Have", - "HaveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaHaveTeamPrimaryChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "beta", "Variants": [ "Have", "HaveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaHaveTeamworkDeletedTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "beta", "Variants": [ "Have", "HaveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/initiateDeviceAttestation", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceAttestation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/initiateDeviceAttestation", + "ApiVersion": "beta", "Variants": [ "Initiate", "InitiateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceMobileDeviceManagementKeyRecovery", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery", + "ApiVersion": "beta", + "Variants": [ + "Initiate", + "InitiateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -333788,19 +348661,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceMobileDeviceManagementKeyRecovery", - "Variants": [ - "Initiate", - "InitiateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceOnDemandProactiveRemediation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation", + "ApiVersion": "beta", + "Variants": [ + "Initiate", + "InitiateExpanded", + "InitiateViaIdentity", + "InitiateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -333819,35 +348695,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaInitiateDeviceManagementComanagedDeviceOnDemandProactiveRemediation", - "Variants": [ - "Initiate", - "InitiateExpanded", - "InitiateViaIdentity", - "InitiateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/initiateDeviceAttestation", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceAttestation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/initiateDeviceAttestation", + "ApiVersion": "beta", "Variants": [ "Initiate", "InitiateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceMobileDeviceManagementKeyRecovery", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery", + "ApiVersion": "beta", + "Variants": [ + "Initiate", + "InitiateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -333866,19 +348742,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceMobileDeviceManagementKeyRecovery", - "Variants": [ - "Initiate", - "InitiateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceOnDemandProactiveRemediation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation", + "ApiVersion": "beta", + "Variants": [ + "Initiate", + "InitiateExpanded", + "InitiateViaIdentity", + "InitiateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -333897,65 +348776,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaInitiateDeviceManagementManagedDeviceOnDemandProactiveRemediation", - "Variants": [ - "Initiate", - "InitiateExpanded", - "InitiateViaIdentity", - "InitiateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateDeviceAttestation", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceAttestation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateDeviceAttestation", + "ApiVersion": "beta", "Variants": [ "Initiate", "InitiateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceMobileDeviceManagementKeyRecovery", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateMobileDeviceManagementKeyRecovery", + "ApiVersion": "beta", "Variants": [ "Initiate", "InitiateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInitiateUserManagedDeviceOnDemandProactiveRemediation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/initiateOnDemandProactiveRemediation", + "ApiVersion": "beta", "Variants": [ "Initiate", "InitiateExpanded", "InitiateViaIdentity", "InitiateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInstantiateApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-beta", "Uri": "/applicationTemplates/{applicationTemplate-id}/instantiate", + "ApiVersion": "beta", + "Variants": [ + "Instantiate", + "InstantiateExpanded", + "InstantiateViaIdentity", + "InstantiateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -333982,21 +348865,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaInstantiateApplicationTemplate", - "Variants": [ - "Instantiate", - "InstantiateExpanded", - "InstantiateViaIdentity", - "InstantiateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplicationServicePrincipal", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplicationServicePrincipal" }, { + "CommandAlias": "Invoke-MgBetaInvalidateUserRefreshToken", + "Method": "POST", + "Command": "Invoke-MgBetaInvalidateAllUserRefreshToken", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-invalidateallrefreshtokens?view=graph-rest-beta", "Uri": "/users/{user-id}/invalidateAllRefreshTokens", + "ApiVersion": "beta", + "Variants": [ + "Invalidate", + "InvalidateViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.RevokeSessions.All", @@ -334023,35 +348905,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Invoke-MgBetaInvalidateAllUserRefreshToken", - "Variants": [ - "Invalidate", - "InvalidateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-invalidateallrefreshtokens?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/participants/invite", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteCommunicationCallParticipant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/participants/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInviteParticipantsOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphInviteParticipantsOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaInviteDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "beta", + "Variants": [ + "Invite", + "InviteExpanded", + "InviteViaIdentity", + "InviteViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -334078,101 +348964,104 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaInviteDriveItem", - "Variants": [ - "Invite", - "InviteExpanded", - "InviteViaIdentity", - "InviteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/invite", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/invite", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaInviteUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/invite", + "ApiVersion": "beta", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaIsDeviceManagementDeviceHealthScriptGlobalScriptAvailable", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/areGlobalScriptsAvailable", + "ApiVersion": "beta", + "Variants": [ + "Are" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -334191,18 +349080,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaIsDeviceManagementDeviceHealthScriptGlobalScriptAvailable", - "Variants": [ - "Are" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaKeepCommunicationCallAlive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/keepAlive", + "ApiVersion": "beta", + "Variants": [ + "Keep", + "KeepViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -334221,19 +349112,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaKeepCommunicationCallAlive", - "Variants": [ - "Keep", - "KeepViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaLicenseUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-beta", "Uri": "/users/{user-id}/reprocessLicenseAssignment", + "ApiVersion": "beta", + "Variants": [ + "License", + "LicenseViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -334252,263 +349144,279 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Invoke-MgBetaLicenseUser", - "Variants": [ - "License", - "LicenseViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/communications/calls/logTeleconferenceDeviceQuality", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaLogCommunicationCallTeleconferenceDeviceQuality", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-beta", + "Uri": "/communications/calls/logTeleconferenceDeviceQuality", + "ApiVersion": "beta", "Variants": [ "Log", "LogExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaLogoutDeviceManagementComanagedDeviceSharedAppleDeviceActiveUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Variants": [ "Logout", "LogoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Variants": [ "Logout", "LogoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaLogoutUserManagedDeviceSharedAppleDeviceActiveUser", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "beta", "Variants": [ "Logout", "LogoutViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/markChatReadForUser", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkChatReadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/markChatReadForUser", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/markChatUnreadForUser", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkChatUnreadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/markChatUnreadForUser", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/markRead", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkServiceAnnouncementMessageRead", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/markRead", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/markUnread", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkServiceAnnouncementMessageUnread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/markUnread", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/markChatReadForUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserChatReadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/markChatReadForUser", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/markChatUnreadForUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserChatUnreadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/markChatUnreadForUser", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/markAsJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderChildFolderMessageAsJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/markAsJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/markAsNotJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderChildFolderMessageAsNotJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/markAsNotJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/markAsJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderMessageAsJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/markAsJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/markAsNotJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMailFolderMessageAsNotJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/markAsNotJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/markAsJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMessageAsJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/markAsJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/markAsNotJunk", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaMarkUserMessageAsNotJunk", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/markAsNotJunk", + "ApiVersion": "beta", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-markasnotjunk?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaMessageChat", + "ApiReferenceLink": null, "Uri": "/chats/allMessages", + "ApiVersion": "beta", + "Variants": [ + "Message" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -334575,18 +349483,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaMessageChat", - "Variants": [ - "Message" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaMessageTeam", + "ApiReferenceLink": null, "Uri": "/teams/allMessages", + "ApiVersion": "beta", + "Variants": [ + "Message" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.Read.Group", @@ -334661,18 +349570,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaMessageTeam", - "Variants": [ - "Message" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaMessageTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/allMessages", + "ApiVersion": "beta", + "Variants": [ + "Message", + "MessageViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.Read.Group", @@ -334747,33 +349658,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaMessageTeamChannel", - "Variants": [ - "Message", - "MessageViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/allMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaMessageTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/allMessages", + "ApiVersion": "beta", "Variants": [ "Message", "MessageViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaMessageUserChat", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/allMessages", + "ApiVersion": "beta", + "Variants": [ + "Message", + "MessageViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "Chat.ReadBasic", @@ -334856,19 +349769,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Invoke-MgBetaMessageUserChat", - "Variants": [ - "Message", - "MessageViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaMuteAllCommunicationCallParticipant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-muteall?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/participants/muteAll", + "ApiVersion": "beta", + "Variants": [ + "Mute1", + "MuteExpanded1", + "MuteViaIdentity1", + "MuteViaIdentityExpanded1" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -334887,21 +349803,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaMuteAllCommunicationCallParticipant", - "Variants": [ - "Mute1", - "MuteExpanded1", - "MuteViaIdentity1", - "MuteViaIdentityExpanded1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantsOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-muteall?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMuteParticipantsOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaMuteCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/mute", + "ApiVersion": "beta", + "Variants": [ + "Mute", + "MuteExpanded", + "MuteViaIdentity", + "MuteViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -334920,21 +349837,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaMuteCommunicationCall", + "OutputType": "IMicrosoftGraphMuteParticipantOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaMuteCommunicationCallParticipant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "ApiVersion": "beta", "Variants": [ "Mute", "MuteExpanded", "MuteViaIdentity", "MuteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-beta" - }, - { - "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -334953,127 +349871,135 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaMuteCommunicationCallParticipant", - "Variants": [ - "Mute", - "MuteExpanded", - "MuteViaIdentity", - "MuteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "Uri": "/privilegedRoleAssignments/my", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaMyPrivilegedRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/my", + "ApiVersion": "beta", "Variants": [ "My" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/my", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaMyPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/my", + "ApiVersion": "beta", "Variants": [ "My" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/overrideComplianceState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaOverrideDeviceManagementComanagedDeviceComplianceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/overrideComplianceState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaOverrideDeviceManagementManagedDeviceComplianceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/overrideComplianceState", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaOverrideUserManagedDeviceComplianceState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/overrideComplianceState", + "ApiVersion": "beta", "Variants": [ "Override", "OverrideExpanded", "OverrideViaIdentity", "OverrideViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaParseApplicationSynchronizationJobSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "beta", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaParseApplicationSynchronizationTemplateSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "beta", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "beta", + "Variants": [ + "Parse", + "ParseExpanded", + "ParseViaIdentity", + "ParseViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -335092,21 +350018,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationJobSchemaExpression", + "OutputType": "IMicrosoftGraphParseExpressionResponse" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "beta", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -335125,21 +350052,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Invoke-MgBetaParseServicePrincipalSynchronizationTemplateSchemaExpression", - "Variants": [ - "Parse", - "ParseExpanded", - "ParseViaIdentity", - "ParseViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaPendingUserApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/getManagedDevicesWithFailedOrPendingApps", + "ApiVersion": "beta", + "Variants": [ + "Pending", + "PendingViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -335158,33 +350084,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Invoke-MgBetaPendingUserApp", - "Variants": [ - "Pending", - "PendingViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDeviceSummarizedAppState" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/pin", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPinEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/pin", + "ApiVersion": "beta", "Variants": [ "Pin", "PinViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaPlayCommunicationCallPrompt", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/playPrompt", + "ApiVersion": "beta", + "Variants": [ + "Play", + "PlayExpanded", + "PlayViaIdentity", + "PlayViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -335203,117 +350150,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaPlayCommunicationCallPrompt", - "Variants": [ - "Play", - "PlayExpanded", - "PlayViaIdentity", - "PlayViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlayPromptOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPlayPromptOperation" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/playLostModeSound", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPlayDeviceManagementComanagedDeviceLostModeSound", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/playLostModeSound", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPlayDeviceManagementManagedDeviceLostModeSound", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/playLostModeSound", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPlayUserManagedDeviceLostModeSound", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/playLostModeSound", + "ApiVersion": "beta", "Variants": [ "Play", "PlayExpanded", "PlayViaIdentity", "PlayViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/impactedResources/{impactedResource-id}/postpone", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta", + "Uri": "/directory/impactedResources/{impactedResource-id}/postpone", + "ApiVersion": "beta", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/recommendations/{recommendation-id}/postpone", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-postpone?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/postpone", + "ApiVersion": "beta", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-postpone?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/postpone", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPostponeDirectoryRecommendationImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/postpone", + "ApiVersion": "beta", "Variants": [ "Postpone", "PostponeExpanded", "PostponeViaIdentity", "PostponeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-postpone?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaPreviewDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "beta", + "Variants": [ + "Preview", + "PreviewExpanded", + "PreviewViaIdentity", + "PreviewViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.Read", @@ -335364,241 +350318,255 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Invoke-MgBetaPreviewDriveItem", - "Variants": [ - "Preview", - "PreviewExpanded", - "PreviewViaIdentity", - "PreviewViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPreviewDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/preview", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPreviewGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPreviewGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/preview", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPreviewUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPreviewUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaPreviewUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "beta", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/domains/{domain-id}/promote", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPromoteDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-beta", + "Uri": "/domains/{domain-id}/promote", + "ApiVersion": "beta", "Variants": [ "Promote", "PromoteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/promoteToInitial", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaPromoteDomainToInitial", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/promoteToInitial", + "ApiVersion": "beta", "Variants": [ "Promote", "PromoteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/resourceAccessProfiles/queryByPlatformType", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaQueryDeviceManagementResourceAccessProfileByPlatformType", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/queryByPlatformType", + "ApiVersion": "beta", "Variants": [ "Query", "QueryExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaQuerySearch", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-beta", "Uri": "/search/query", + "ApiVersion": "beta", + "Variants": [ + "Query", + "QueryExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "Mail.Read", @@ -335673,61 +350641,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Invoke-MgBetaQuerySearch", - "Variants": [ - "Query", - "QueryExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSearchResponse" }, { - "Uri": "/directory/impactedResources/{impactedResource-id}/reactivate", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta", + "Uri": "/directory/impactedResources/{impactedResource-id}/reactivate", + "ApiVersion": "beta", "Variants": [ "Reactivate", "ReactivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/recommendations/{recommendation-id}/reactivate", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryRecommendation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-reactivate?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/reactivate", + "ApiVersion": "beta", "Variants": [ "Reactivate", "ReactivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/recommendation-reactivate?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/reactivate", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReactivateDirectoryRecommendationImpactedResource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta", + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}/reactivate", + "ApiVersion": "beta", "Variants": [ "Reactivate", "ReactivateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/impactedresource-reactivate?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReassignEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", + "Variants": [ + "Reassign", + "ReassignViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -335754,475 +350726,507 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaReassignEducationClassAssignmentSubmission", - "Variants": [ - "Reassign", - "ReassignViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReassignEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", "Variants": [ "Reassign", "ReassignViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReassignEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "beta", "Variants": [ "Reassign", "ReassignViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeGroupSiteListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeShareListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeSiteListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReauthorizeUserDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "beta", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaRecentDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/recent", + "ApiVersion": "beta", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaRecentGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/recent", + "ApiVersion": "beta", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/activities/recent", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaRecentUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/recent", + "ApiVersion": "beta", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaRecentUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/recent", + "ApiVersion": "beta", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/communications/calls/{call-id}/record", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordCommunicationCall", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/record", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecordOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecordOperation" }, { - "Uri": "/communications/calls/{call-id}/recordResponse", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordCommunicationCallResponse", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/recordResponse", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecordOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecordOperation" }, { - "Uri": "/identityGovernance/accessReviews/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/recordAllDecisions", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRecordUserPendingAccessReviewInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/decisions/recordAllDecisions", + "ApiVersion": "beta", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-recordalldecisions?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/redirect", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRedirectCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/redirect", + "ApiVersion": "beta", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/redirect", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/redirect", + "ApiVersion": "beta", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/redirect", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintPrinterShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/redirect", + "ApiVersion": "beta", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/redirect", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRedirectPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/redirect", + "ApiVersion": "beta", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReenableDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", + "Variants": [ + "Reenable", + "ReenableViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -336241,19 +351245,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaReenableDeviceManagementComanagedDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReenableDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", "Variants": [ "Reenable", "ReenableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reenable", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -336272,49 +351277,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaReenableDeviceManagementManagedDevice", - "Variants": [ - "Reenable", - "ReenableViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reenable", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReenableUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reenable", + "ApiVersion": "beta", "Variants": [ "Reenable", "ReenableViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/reject", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRejectCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/reject", + "ApiVersion": "beta", "Variants": [ "Reject", "RejectExpanded", "RejectViaIdentity", "RejectViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRejectDeviceManagementOperationApprovalRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/{operationApprovalRequest-id}/reject", + "ApiVersion": "beta", + "Variants": [ + "Reject", + "RejectExpanded", + "RejectViaIdentity", + "RejectViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -336333,217 +351343,230 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaRejectDeviceManagementOperationApprovalRequest", - "Variants": [ - "Reject", - "RejectExpanded", - "RejectViaIdentity", - "RejectViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}/remediate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRemediateIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}/remediate", + "ApiVersion": "beta", "Variants": [ "Remediate", "RemediateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/collaboration/analyzedEmails/remediate", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRemediateSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-analyzedemail-remediate?view=graph-rest-beta", + "Uri": "/security/collaboration/analyzedEmails/remediate", + "ApiVersion": "beta", "Variants": [ "Remediate", "RemediateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-analyzedemail-remediate?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSPkgAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "beta", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRenewGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-beta", "Uri": "/groups/{group-id}/renew", + "ApiVersion": "beta", + "Variants": [ + "Renew", + "RenewViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -336562,19 +351585,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaRenewGroup", - "Variants": [ - "Renew", - "RenewViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRenewGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-renewgroup?view=graph-rest-beta", "Uri": "/groupLifecyclePolicies/renewGroup", + "ApiVersion": "beta", + "Variants": [ + "Renew", + "RenewExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -336593,19 +351617,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaRenewGroupLifecyclePolicy", - "Variants": [ - "Renew", - "RenewExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-renewgroup?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReopenComplianceEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-reopen?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/reopen", + "ApiVersion": "beta", + "Variants": [ + "Reopen", + "ReopenViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -336620,23 +351645,24 @@ "Description": "Read and write all eDiscovery objects", "FullDescription": "Allows the app to read and write eDiscovery objects such as cases, custodians, review sets and other related objects on your behalf.", "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Compliance", - "Command": "Invoke-MgBetaReopenComplianceEdiscoveryCase", - "Variants": [ - "Reopen", - "ReopenViaIdentity" + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-case-reopen?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReopenSecurityCaseEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reopen", + "ApiVersion": "beta", + "Variants": [ + "Reopen", + "ReopenViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -336655,99 +351681,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Invoke-MgBetaReopenSecurityCaseEdiscoveryCase", - "Variants": [ - "Reopen", - "ReopenViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReorderDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder", + "ApiVersion": "beta", "Variants": [ "Reorder", "ReorderExpanded", "ReorderViaIdentity", "ReorderViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReorderDeviceManagementReusablePolicySettingReferencingConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusablePolicySettings/{deviceManagementReusablePolicySetting-id}/referencingConfigurationPolicies/{deviceManagementConfigurationPolicy-id}/reorder", + "ApiVersion": "beta", "Variants": [ "Reorder", "ReorderExpanded", "ReorderViaIdentity", "ReorderViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/replyAll", + "ApiVersion": "beta", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", + "ApiVersion": "beta", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyAllUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/replyAll", + "ApiVersion": "beta", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReplyGroupConversationThread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "beta", + "Variants": [ + "Reply", + "ReplyExpanded", + "ReplyViaIdentity", + "ReplyViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -336766,21 +351800,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaReplyGroupConversationThread", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReplyGroupConversationThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -336799,37 +351834,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaReplyGroupConversationThreadPost", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReplyGroupConversationThreadPostInReplyTo", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaReplyGroupConversationThreadPostInReplyTo", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReplyGroupThread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -336848,21 +351885,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaReplyGroupThread", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReplyGroupThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -336881,299 +351919,317 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Invoke-MgBetaReplyGroupThreadPost", - "Variants": [ - "Reply", - "ReplyExpanded", - "ReplyViaIdentity", - "ReplyViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyGroupThreadPostInReplyTo", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReplyUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/reply", + "ApiVersion": "beta", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaReportServiceAnnouncementHealthOverviewIssueIncident", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport", + "ApiVersion": "beta", "Variants": [ "Report", "ReportViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaReportServiceAnnouncementIssueIncident", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport", + "ApiVersion": "beta", "Variants": [ "Report", "ReportViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/reprovisionCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementComanagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Cloud", "CloudViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reprovisionCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Cloud", "CloudViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reprovision", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReprovisionDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reprovision", + "ApiVersion": "beta", "Variants": [ "Reprovision", "ReprovisionExpanded", "ReprovisionViaIdentity", "ReprovisionViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/reprovision", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReprovisionUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/reprovision", + "ApiVersion": "beta", "Variants": [ "Reprovision", "ReprovisionExpanded", "ReprovisionViaIdentity", "ReprovisionViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reprovision?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reprovisionCloudPc", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReprovisionUserManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/reprovisionCloudPc", + "ApiVersion": "beta", "Variants": [ "Cloud", "CloudViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-reprovisioncloudpc?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/retire", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetireDeviceManagementComanagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Variants": [ "Retire", "RetireViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetireDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Variants": [ "Retire", "RetireViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetireUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "beta", "Variants": [ "Retire", "RetireViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetryContactServiceProvisioning", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-retryserviceprovisioning?view=graph-rest-beta", + "Uri": "/contacts/{orgContact-id}/retryServiceProvisioning", + "ApiVersion": "beta", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/orgcontact-retryserviceprovisioning?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/retryPartnerAgentInstallation", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetryDeviceManagementVirtualEndpointCloudPcPartnerAgentInstallation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/retryPartnerAgentInstallation", + "ApiVersion": "beta", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetryGroupServiceProvisioning", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-beta", + "Uri": "/groups/{group-id}/retryServiceProvisioning", + "ApiVersion": "beta", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/retryPartnerAgentInstallation", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetryUserCloudPcPartnerAgentInstallation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/retryPartnerAgentInstallation", + "ApiVersion": "beta", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-retrypartneragentinstallation?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRetryUserServiceProvisioning", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-beta", + "Uri": "/users/{user-id}/retryServiceProvisioning", + "ApiVersion": "beta", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaReturnEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", + "Variants": [ + "Return", + "ReturnViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -337192,61 +352248,65 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaReturnEducationClassAssignmentSubmission", - "Variants": [ - "Return", - "ReturnViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReturnEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", "Variants": [ "Return", "ReturnViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReturnEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "beta", "Variants": [ "Return", "ReturnViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}/reupload", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaReuploadDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-reupload?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}/reupload", + "ApiVersion": "beta", "Variants": [ "Reupload", "ReuploadViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcdeviceimage-reupload?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceBitLockerKey", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", + "Variants": [ + "Rotate", + "RotateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -337265,33 +352325,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceBitLockerKey", - "Variants": [ - "Rotate", - "RotateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateFileVaultKey", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceFileVaultKey", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceLocalAdminPassword", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rotateLocalAdminPassword", + "ApiVersion": "beta", + "Variants": [ + "Rotate", + "RotateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -337310,19 +352372,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaRotateDeviceManagementComanagedDeviceLocalAdminPassword", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceBitLockerKey", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateBitLockerKeys", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -337341,33 +352404,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceBitLockerKey", - "Variants": [ - "Rotate", - "RotateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateFileVaultKey", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceFileVaultKey", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceLocalAdminPassword", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rotateLocalAdminPassword", + "ApiVersion": "beta", + "Variants": [ + "Rotate", + "RotateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -337386,125 +352451,132 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaRotateDeviceManagementManagedDeviceLocalAdminPassword", - "Variants": [ - "Rotate", - "RotateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateBitLockerKeys", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceBitLockerKey", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateBitLockerKeys", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateFileVaultKey", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceFileVaultKey", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateFileVaultKey", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateLocalAdminPassword", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaRotateUserManagedDeviceLocalAdminPassword", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rotateLocalAdminPassword", + "ApiVersion": "beta", "Variants": [ "Rotate", "RotateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsDefenderScan", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaScanDeviceManagementComanagedDeviceWindowsDefender", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaScanDeviceManagementManagedDeviceWindowsDefender", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaScanUserManagedDeviceWindowsDefender", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "beta", "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaScheduleDeviceManagementDeviceCompliancePolicyActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", + "ApiVersion": "beta", "Variants": [ "Schedule", "ScheduleExpanded", "ScheduleViaIdentity", "ScheduleViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaScheduleRoleManagementDirectory", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", "Uri": "/roleManagement/directory/roleScheduleInstances(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", + "Variants": [ + "Schedule" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAccess.ReadWrite.AzureAD", @@ -337523,18 +352595,19 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaScheduleRoleManagementDirectory", - "Variants": [ - "Schedule" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaScheduleRoleManagementDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", "Uri": "/roleManagement/directory/roleSchedules(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", + "Variants": [ + "Schedule" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAccess.ReadWrite.AzureAD", @@ -337553,206 +352626,223 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaScheduleRoleManagementDirectoryRole", - "Variants": [ - "Schedule" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleScheduleInstances(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEnterpriseApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleScheduleInstances(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", "Variants": [ "Schedule", "ScheduleViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleSchedules(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEnterpriseAppRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleSchedules(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", "Variants": [ "Schedule", "ScheduleViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "Uri": "/roleManagement/entitlementManagement/roleScheduleInstances(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEntitlementManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleScheduleInstances(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", "Variants": [ "Schedule" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-rolescheduleinstances?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleInstanceBase" }, { - "Uri": "/roleManagement/entitlementManagement/roleSchedules(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaScheduleRoleManagementEntitlementManagementRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleSchedules(directoryScopeId='@directoryScopeId',appScopeId='@appScopeId',principalId='@principalId',roleDefinitionId='@roleDefinitionId')", + "ApiVersion": "beta", "Variants": [ "Schedule" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/rbacapplication-roleschedules?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleScheduleBase" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/selfActivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedApprovalRoleInfoActivate", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/selfActivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfExpanded", "SelfViaIdentity", "SelfViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/selfDeactivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedApprovalRoleInfoDeactivate", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/selfDeactivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/selfActivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleActivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/selfActivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfExpanded", "SelfViaIdentity", "SelfViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/selfActivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRequestRoleInfoActivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/selfActivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfExpanded", "SelfViaIdentity", "SelfViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/selfDeactivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRequestRoleInfoDeactivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/selfDeactivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/selfActivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRoleInfoActivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/selfActivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfExpanded", "SelfViaIdentity", "SelfViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/selfDeactivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleAssignmentRoleInfoDeactivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/selfDeactivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/selfDeactivate", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSelfPrivilegedRoleDeactivate", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/selfDeactivate", + "ApiVersion": "beta", "Variants": [ "Self", "SelfViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/shareForSchoolDataSyncService", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaShareDeviceManagementDepOnboardingSettingForSchoolDataSyncService", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/shareForSchoolDataSyncService", + "ApiVersion": "beta", "Variants": [ "Share", "ShareViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaShareTeamSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-beta", "Uri": "/teams/{team-id}/schedule/share", + "ApiVersion": "beta", + "Variants": [ + "Share", + "ShareExpanded", + "ShareViaIdentity", + "ShareViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -337771,317 +352861,336 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaShareTeamSchedule", - "Variants": [ - "Share", - "ShareExpanded", - "ShareViaIdentity", - "ShareViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/signDigest", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSignGroupSiteInformationProtectionDigest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/signDigest", + "ApiVersion": "beta", "Variants": [ "Sign", "SignExpanded", "SignViaIdentity", "SignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSigningResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSigningResult" }, { - "Uri": "/informationProtection/signDigest", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSignInformationProtectionDigest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/signDigest", + "ApiVersion": "beta", "Variants": [ "Sign", "SignExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSigningResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSigningResult" }, { - "Uri": "/sites/{site-id}/informationProtection/signDigest", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSignSiteInformationProtectionDigest", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/signDigest", + "ApiVersion": "beta", "Variants": [ "Sign", "SignExpanded", "SignViaIdentity", "SignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSigningResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSigningResult" }, { - "Uri": "/users/{user-id}/informationProtection/signDigest", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSignUserInformationProtectionDigest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/signDigest", + "ApiVersion": "beta", "Variants": [ "Sign", "SignExpanded", "SignViaIdentity", "SignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSigningResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSigningResult" }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSnoozeGroupCalendarEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSnoozeGroupEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSnoozeUserEventInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "ApiVersion": "beta", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSnoozeUserEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "beta", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftChatMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftChatMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamPrimaryChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamPrimaryChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamworkDeletedTeamChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftTeamworkDeletedTeamChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftUserChatMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSoftUserChatMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "beta", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/subscribeToTone", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSubscribeCommunicationCallToTone", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/subscribeToTone", + "ApiVersion": "beta", "Variants": [ "Subscribe", "SubscribeExpanded", "SubscribeViaIdentity", "SubscribeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribeToToneOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribeToToneOperation" }, { - "Uri": "/groups/{group-id}/subscribeByMail", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaSubscribeGroupByMail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-beta", + "Uri": "/groups/{group-id}/subscribeByMail", + "ApiVersion": "beta", "Variants": [ "Subscribe", "SubscribeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/summarizeDevicePerformanceDevices(summarizeBy='{summarizeBy}')", + "ApiVersion": "beta", + "Variants": [ + "Summarize", + "SummarizeViaIdentity" + ], + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -338116,19 +353225,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticRemoteConnectionDeviceRemoteConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/summarizeDeviceRemoteConnection(summarizeBy='{summarizeBy}')", + "ApiVersion": "beta", "Variants": [ "Summarize", "SummarizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/summarizeDeviceRemoteConnection(summarizeBy='{summarizeBy}')", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -338147,19 +353257,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticRemoteConnectionDeviceRemoteConnection", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticResourcePerformanceDeviceResourcePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/summarizeDeviceResourcePerformance(summarizeBy='{summarizeBy}')", + "ApiVersion": "beta", "Variants": [ "Summarize", "SummarizeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/summarizeDeviceResourcePerformance(summarizeBy='{summarizeBy}')", + "Module": "Beta.DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -338178,19 +353289,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Functions", - "Command": "Invoke-MgBetaSummarizeDeviceManagementUserExperienceAnalyticResourcePerformanceDeviceResourcePerformance", - "Variants": [ - "Summarize", - "SummarizeViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", + "Variants": [ + "Summary", + "SummaryViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -338209,19 +353321,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRun", + "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -338240,47 +353353,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "Summary", - "SummaryViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "beta", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaSupportedUserOutlookLanguage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-beta", "Uri": "/users/{user-id}/outlook/supportedLanguages", + "ApiVersion": "beta", + "Variants": [ + "Supported", + "SupportedViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -338301,41 +353417,45 @@ { "Name": "User.ReadBasic.All", "Description": "Read all users' basic profiles", - "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", - "IsAdmin": false, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Users.Functions", - "Command": "Invoke-MgBetaSupportedUserOutlookLanguage", - "Variants": [ - "Supported", - "SupportedViaIdentity" + "FullDescription": "Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.", + "IsAdmin": false, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocaleInfo", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphLocaleInfo" }, { - "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}/unassignTag", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaTagTenantRelationshipManagedTenantTagUnassign", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-unassigntag?view=graph-rest-beta", + "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}/unassignTag", + "ApiVersion": "beta", "Variants": [ "Tag", "TagExpanded", "TagViaIdentity", "TagViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-unassigntag?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppPolicyApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", + "Variants": [ + "Target", + "TargetExpanded", + "TargetViaIdentity", + "TargetViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -338354,21 +353474,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppPolicyApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -338387,21 +353508,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "beta", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -338420,37 +353542,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Invoke-MgBetaTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTargetDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", + "ApiVersion": "beta", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Invoke-MgBetaTargetDeviceAppManagementTargetedManagedAppConfigurationApp", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTargetDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps", + "ApiVersion": "beta", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/targetApps", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -338469,21 +353593,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Invoke-MgBetaTargetDeviceAppManagementWindowsManagedAppProtectionApp", - "Variants": [ - "Target", - "TargetExpanded", - "TargetViaIdentity", - "TargetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTenantRelationshipManagedTenantGroupSearch", + "ApiReferenceLink": null, "Uri": "/tenantRelationships/managedTenants/tenantGroups/tenantSearch", + "ApiVersion": "beta", + "Variants": [ + "Tenant", + "TenantExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "ManagedTenants.Read.All", @@ -338502,33 +353625,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Invoke-MgBetaTenantRelationshipManagedTenantGroupSearch", - "Variants": [ - "Tenant", - "TenantExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}/offboardTenant", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaTenantRelationshipManagedTenantOffboard", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-offboardtenant?view=graph-rest-beta", + "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}/offboardTenant", + "ApiVersion": "beta", "Variants": [ "Tenant", "TenantViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-offboardtenant?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTerminateDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}/terminate", + "ApiVersion": "beta", + "Variants": [ + "Terminate", + "TerminateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -338547,19 +353672,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaTerminateDeviceManagementPartner", - "Variants": [ - "Terminate", - "TerminateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaTimeUserOutlook", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/outlook/supportedTimeZones", + "ApiVersion": "beta", + "Variants": [ + "Time", + "Time1", + "TimeViaIdentity", + "TimeViaIdentity1" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -338586,21 +353714,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Invoke-MgBetaTimeUserOutlook", - "Variants": [ - "Time", - "Time1", - "TimeViaIdentity", - "TimeViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeZoneInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeZoneInformation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaTranslateUserExchangeId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-beta", "Uri": "/users/{user-id}/translateExchangeIds", + "ApiVersion": "beta", + "Variants": [ + "Translate", + "TranslateExpanded", + "TranslateViaIdentity", + "TranslateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -338643,65 +353772,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Invoke-MgBetaTranslateUserExchangeId", - "Variants": [ - "Translate", - "TranslateExpanded", - "TranslateViaIdentity", - "TranslateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConvertIdResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphConvertIdResult" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/troubleshoot", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaTroubleshootDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/troubleshoot", + "ApiVersion": "beta", "Variants": [ "Troubleshoot", "TroubleshootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/troubleshoot", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaTroubleshootUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/troubleshoot", + "ApiVersion": "beta", "Variants": [ "Troubleshoot", "TroubleshootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/unarchive", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveGroupPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveExpanded", "UnarchiveViaIdentity", "UnarchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaUnarchivePlannerPlan", + "ApiReferenceLink": null, "Uri": "/planner/plans/{plannerPlan-id}/unarchive", + "ApiVersion": "beta", + "Variants": [ + "Unarchive", + "UnarchiveExpanded", + "UnarchiveViaIdentity", + "UnarchiveViaIdentityExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -338720,35 +353853,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Invoke-MgBetaUnarchivePlannerPlan", - "Variants": [ - "Unarchive", - "UnarchiveExpanded", - "UnarchiveViaIdentity", - "UnarchiveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/unarchive", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaUnarchiveTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-beta", "Uri": "/teams/{team-id}/unarchive", + "ApiVersion": "beta", + "Variants": [ + "Unarchive", + "UnarchiveViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -338783,91 +353916,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Invoke-MgBetaUnarchiveTeam", - "Variants": [ - "Unarchive", - "UnarchiveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/unarchive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/unarchive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamPrimaryChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/unarchive", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveTeamworkDeletedTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-unarchive?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/unarchive", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnarchiveUserPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/unarchive", + "ApiVersion": "beta", "Variants": [ "Unarchive", "UnarchiveExpanded", "UnarchiveViaIdentity", "UnarchiveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceUserFromDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "beta", "Variants": [ "Unassign", "UnassignViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "beta", + "Variants": [ + "Unassign", + "UnassignViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -338886,189 +354025,204 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Invoke-MgBetaUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", - "Variants": [ - "Unassign", - "UnassignViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkSettings/unbind", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnbindDeviceManagementAndroidForWorkSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings/unbind", + "ApiVersion": "beta", "Variants": [ "Unbind" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/unbind", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnbindDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/unbind", + "ApiVersion": "beta", "Variants": [ "Unbind" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/unenrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaUnenrollWuPolicyAudienceExclusionAsset", + "Method": "POST", "Command": "Invoke-MgBetaUnenrollWindowsUpdatesPolicyAudienceExclusionAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/unenrollAssets", + "ApiVersion": "beta", "Variants": [ "Unenroll", "UnenrollExpanded", "UnenrollViaIdentity", "UnenrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/unenrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaUnenrollWuPolicyAudienceMemberAsset", + "Method": "POST", "Command": "Invoke-MgBetaUnenrollWindowsUpdatesPolicyAudienceMemberAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/unenrollAssets", + "ApiVersion": "beta", "Variants": [ "Unenroll", "UnenrollExpanded", "UnenrollViaIdentity", "UnenrollViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/unenrollAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Invoke-MgBetaUnenrollWuUpdatableAsset", + "Method": "POST", "Command": "Invoke-MgBetaUnenrollWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/unenrollAssets", + "ApiVersion": "beta", "Variants": [ "Unenroll", "UnenrollExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/unfavorite", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfavoriteServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-beta", + "Uri": "/admin/serviceAnnouncement/messages/unfavorite", + "ApiVersion": "beta", "Variants": [ "Unfavorite", "UnfavoriteExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-beta" + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnfollowUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/unfollow", + "ApiVersion": "beta", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaUnmuteCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/unmute", + "ApiVersion": "beta", + "Variants": [ + "Unmute", + "UnmuteExpanded", + "UnmuteViaIdentity", + "UnmuteViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -339087,35 +354241,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Invoke-MgBetaUnmuteCommunicationCall", - "Variants": [ - "Unmute", - "UnmuteExpanded", - "UnmuteViaIdentity", - "UnmuteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUnmuteParticipantOperation" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/unpin", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnpinEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/unpin", + "ApiVersion": "beta", "Variants": [ "Unpin", "UnpinViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgBetaUnsubmitEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", + "Variants": [ + "Unsubmit", + "UnsubmitViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -339142,121 +354313,129 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaUnsubmitEducationClassAssignmentSubmission", - "Variants": [ - "Unsubmit", - "UnsubmitViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnsubmitEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnsubmitEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "beta", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/unsubscribe", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/unsubscribe", + "ApiVersion": "beta", "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/unsubscribe", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/unsubscribe", + "ApiVersion": "beta", "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/unsubscribe", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUnsubscribeUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/unsubscribe", + "ApiVersion": "beta", "Variants": [ "Unsubscribe", "UnsubscribeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-unsubscribe?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/uploadDepToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadDeviceManagementDepOnboardingSettingDepToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/uploadDepToken", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/uploadNewVersion", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadDeviceManagementGroupPolicyUploadedDefinitionFileNewVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/uploadNewVersion", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaUploadEducationSynchronizationProfileUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-uploadurl?view=graph-rest-beta", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/uploadUrl", + "ApiVersion": "beta", + "Variants": [ + "Upload", + "UploadViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.ReadWrite", @@ -339275,147 +354454,156 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Invoke-MgBetaUploadEducationSynchronizationProfileUrl", - "Variants": [ - "Upload", - "UploadViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-uploadurl?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}/uploadClientCertificate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityApiConnectorClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", + "Uri": "/identity/apiConnectors/{identityApiConnector-id}/uploadClientCertificate", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance/uploadClientCertificate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadIdentityB2XUserFlowApiConnectorConfigurationPreTokenIssuanceClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance/uploadClientCertificate", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadCertificate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadcertificate?view=graph-rest-beta", + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadCertificate", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadcertificate?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadPkcs12", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetPkcs12", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadpkcs12?view=graph-rest-beta", + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadPkcs12", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadpkcs12?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadSecret", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgBetaUploadTrustFrameworkKeySetSecret", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadsecret?view=graph-rest-beta", + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/uploadSecret", + "ApiVersion": "beta", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-uploadsecret?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "Uri": "/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/usage", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaUsageIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta", + "Uri": "/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/usage", + "ApiVersion": "beta", "Variants": [ "Usage", "Usage1", "UsageViaIdentity", "UsageViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgBetaUsagePolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta", "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/usage", + "ApiVersion": "beta", + "Variants": [ + "Usage", + "UsageViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -339442,63 +354630,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Invoke-MgBetaUsagePolicyAuthenticationStrengthPolicy", - "Variants": [ - "Usage", - "UsageViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgBetaViewUserReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-beta", + "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", + "ApiVersion": "beta", "Variants": [ "View", "ViewViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphReminder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphReminder" }, { - "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgCalendarGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "v1.0", "Variants": [ "Calendar", "CalendarViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgCalendarUserCalendarAllowedCalendarSharingRoles", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/allowedCalendarSharingRoles(User='{User}')", + "ApiVersion": "v1.0", "Variants": [ "Calendar", "Calendar1", "CalendarViaIdentity", "CalendarViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users.Functions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgCheckinDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "v1.0", + "Variants": [ + "Checkin", + "CheckinExpanded", + "CheckinViaIdentity", + "CheckinViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -339525,101 +354719,105 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgCheckinDriveItem", - "Variants": [ - "Checkin", - "CheckinExpanded", - "CheckinViaIdentity", - "CheckinViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckinDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/checkin", + "ApiVersion": "v1.0", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkin", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckinGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "v1.0", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckinGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkin", + "ApiVersion": "v1.0", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkin", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckinUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkin", + "ApiVersion": "v1.0", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/checkin", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckinUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/checkin", + "ApiVersion": "v1.0", "Variants": [ "Checkin", "CheckinExpanded", "CheckinViaIdentity", "CheckinViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkin?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgCheckoutDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "v1.0", + "Variants": [ + "Checkout", + "CheckoutViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -339646,325 +354844,348 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgCheckoutDriveItem", - "Variants": [ - "Checkout", - "CheckoutViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckoutDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/checkout", + "ApiVersion": "v1.0", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkout", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckoutGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "v1.0", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckoutGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/checkout", + "ApiVersion": "v1.0", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkout", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckoutUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/checkout", + "ApiVersion": "v1.0", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/checkout", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCheckoutUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/checkout", + "ApiVersion": "v1.0", "Variants": [ "Checkout", "CheckoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-checkout?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCleanDeviceManagementManagedDeviceWindowsDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "v1.0", "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCleanUserManagedDeviceWindowsDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/cleanWindowsDevice", + "ApiVersion": "v1.0", "Variants": [ "Clean", "CleanExpanded", "CleanViaIdentity", "CleanViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-cleanwindowsdevice?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/alerts_v2/{alert-id}/comments/$count", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgCommentSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}/comments/$count", + "ApiVersion": "v1.0", "Variants": [ "Comment", "CommentViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCommitDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/commit", + "ApiVersion": "v1.0", "Variants": [ "Commit", "CommitExpanded", "CommitViaIdentity", "CommitViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/createOrGet", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgCreateOrGetCommunicationOnlineMeeting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0", + "Uri": "/communications/onlineMeetings/createOrGet", + "ApiVersion": "v1.0", "Variants": [ "Create1", "CreateExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0", "Uri": "/users/{user-id}/onlineMeetings/createOrGet", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -339983,21 +355204,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Invoke-MgCreateOrGetUserOnlineMeeting", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/onlinemeeting-createorget?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgDeactivateEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "v1.0", + "Variants": [ + "Deactivate", + "DeactivateViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -340016,209 +355236,222 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Invoke-MgDeactivateEducationClassAssignment", - "Variants": [ - "Deactivate", - "DeactivateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/deactivate", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeactivateEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "v1.0", "Variants": [ "Deactivate", "DeactivateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/deactivate", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeactivateEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/deactivate", + "ApiVersion": "v1.0", "Variants": [ "Deactivate", "DeactivateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-deactivate?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeclineGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/decline", + "ApiVersion": "v1.0", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/decline", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeclineGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/decline", + "ApiVersion": "v1.0", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/decline", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeclineUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/decline", + "ApiVersion": "v1.0", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDeclineUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/decline", + "ApiVersion": "v1.0", "Variants": [ "Decline", "DeclineExpanded", "DeclineViaIdentity", "DeclineViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-decline?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissGroupCalendarEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissGroupEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/dismiss", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissRiskyServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-1.0", + "Uri": "/identityProtection/riskyServicePrincipals/dismiss", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyserviceprincipal-dismiss?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/dismiss", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissRiskyUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-dismiss?view=graph-rest-1.0", + "Uri": "/identityProtection/riskyUsers/dismiss", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/riskyuser-dismiss?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissUserEventInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/dismissReminder", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDismissUserEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/dismissReminder", + "ApiVersion": "v1.0", "Variants": [ "Dismiss", "DismissViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-dismissreminder?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDownDeviceManagementManagedDeviceShut", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "v1.0", "Variants": [ "Down", "DownViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applepushnotificationcertificate-downloadapplepushnotificationcertificatesigningrequest?view=graph-rest-1.0", "Uri": "/deviceManagement/applePushNotificationCertificate/downloadApplePushNotificationCertificateSigningRequest", + "ApiVersion": "v1.0", + "Variants": [ + "Download" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -340237,32 +355470,35 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Invoke-MgDownloadDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", - "Variants": [ - "Download" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applepushnotificationcertificate-downloadapplepushnotificationcertificatesigningrequest?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgDownUserManagedDeviceShut", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/shutDown", + "ApiVersion": "v1.0", "Variants": [ "Down", "DownViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-shutdown?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/estimateStatistics", + "ApiVersion": "v1.0", + "Variants": [ + "Estimate", + "EstimateViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -340281,19 +355517,19 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Invoke-MgEstimateSecurityCaseEdiscoveryCaseSearchStatistics", - "Variants": [ - "Estimate", - "EstimateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverysearch-estimatestatistics?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgExperienceDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsSummarizeWorkFromAnywhereDevices", + "ApiVersion": "v1.0", + "Variants": [ + "Experience" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -340312,18 +355548,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Invoke-MgExperienceDeviceManagement", - "Variants": [ - "Experience" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevicesSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevicesSummary" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgExtractDriveItemSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "v1.0", + "Variants": [ + "Extract", + "ExtractViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read.All", @@ -340358,117 +355596,125 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgExtractDriveItemSensitivityLabel", - "Variants": [ - "Extract", - "ExtractViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgExtractDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "v1.0", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgExtractGroupDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "v1.0", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgExtractGroupDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "v1.0", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgExtractUserDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/extractSensitivityLabels", + "ApiVersion": "v1.0", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/extractSensitivityLabels", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgExtractUserDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/extractSensitivityLabels", + "ApiVersion": "v1.0", "Variants": [ "Extract", "ExtractViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSensitivityLabelAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabelAssignment" }, { - "Uri": "/admin/serviceAnnouncement/messages/favorite", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFavoriteServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/favorite", + "ApiVersion": "v1.0", "Variants": [ "Favorite", "FavoriteExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-favorite?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterApplicationSynchronizationJobSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "v1.0", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -340487,19 +355733,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFilterApplicationSynchronizationTemplateSchemaOperator", + "OutputType": "IMicrosoftGraphFilterOperatorSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -340518,19 +355765,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageAssignmentApprovalByCurrentUser", + "OutputType": "IMicrosoftGraphApproval" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -340549,19 +355797,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterEntitlementManagementAccessPackageByCurrentUser", + "OutputType": "IMicrosoftGraphAccessPackage" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/entitlementManagement/assignments/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -340580,19 +355829,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterEntitlementManagementAssignmentByCurrentUser", + "OutputType": "IMicrosoftGraphAccessPackageAssignment" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -340611,19 +355861,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterEntitlementManagementAssignmentRequestByCurrentUser", + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -340642,19 +355893,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewscheduledefinition-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -340673,19 +355925,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -340704,19 +355957,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceDecisionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -340735,19 +355989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewStage" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "AccessReview.Read.All", @@ -340766,19 +356021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionByCurrentUser", + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstancedecisionitem-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/appConsent/appConsentRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -340797,19 +356053,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestByCurrentUser", + "OutputType": "IMicrosoftGraphAppConsentRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/appconsentrequest-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "ConsentRequest.Read.All", @@ -340828,33 +356085,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernanceAppConsentRequestUserConsentRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userconsentrequest-filterbycurrentuser?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentApprovalByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/approval-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -340873,19 +356132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedule-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -340904,19 +356164,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.Read.AzureADGroup", @@ -340935,19 +356196,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequestByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -340966,19 +356228,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -340997,19 +356260,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.Read.AzureADGroup", @@ -341028,19 +356292,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequestByCurrentUser", + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -341083,19 +356348,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -341138,19 +356404,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.Read.Directory", @@ -341193,19 +356460,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleAssignmentScheduleRequestByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -341248,19 +356516,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -341303,19 +356572,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleInstanceByCurrentUser", + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.Read.Directory", @@ -341358,103 +356628,110 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgFilterRoleManagementDirectoryRoleEligibilityScheduleRequestByCurrentUser", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleAssignmentScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedule-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleInstanceByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityscheduleinstance-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFilterRoleManagementEntitlementManagementRoleEligibilityScheduleRequestByCurrentUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/filterByCurrentUser(on='{on}')", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-filterbycurrentuser?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/filterOperators", + "ApiVersion": "v1.0", + "Variants": [ + "Filter", + "FilterViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -341473,19 +356750,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFilterServicePrincipalSynchronizationJobSchemaOperator", + "OutputType": "IMicrosoftGraphFilterOperatorSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "ApiVersion": "v1.0", "Variants": [ "Filter", "FilterViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/filterOperators", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -341504,19 +356782,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFilterServicePrincipalSynchronizationTemplateSchemaOperator", - "Variants": [ - "Filter", - "FilterViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFilterOperatorSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-filteroperators?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphFilterOperatorSchema" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgFollowDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "v1.0", + "Variants": [ + "Follow", + "FollowViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -341567,121 +356846,131 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgFollowDriveItem", - "Variants": [ - "Follow", - "FollowViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFollowDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/follow", + "ApiVersion": "v1.0", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/follow", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFollowGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "v1.0", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFollowGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/follow", + "ApiVersion": "v1.0", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/follow", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFollowUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/follow", + "ApiVersion": "v1.0", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/follow", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgFollowUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/follow", + "ApiVersion": "v1.0", "Variants": [ "Follow", "FollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-follow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/domains/{domain-id}/forceDelete", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForceDomainDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-1.0", + "Uri": "/domains/{domain-id}/forceDelete", + "ApiVersion": "v1.0", "Variants": [ "Force", "ForceExpanded", "ForceViaIdentity", "ForceViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-forcedelete?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgForwardGroupConversationThreadPost", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "v1.0", + "Variants": [ + "Forward", + "ForwardExpanded", + "ForwardViaIdentity", + "ForwardViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -341700,53 +356989,56 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgForwardGroupConversationThreadPost", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", - "Permissions": [], - "Module": "Groups", - "Command": "Invoke-MgForwardGroupConversationThreadPostInReplyTo", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgForwardGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/forward", - "Permissions": [], - "Module": "Groups", - "Command": "Invoke-MgForwardGroupEvent", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgForwardGroupThreadPost", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/forward", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -341765,131 +357057,137 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgForwardGroupThreadPost", - "Variants": [ - "Forward", - "ForwardExpanded", - "ForwardViaIdentity", - "ForwardViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardGroupThreadPostInReplyTo", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-forward?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/forward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-forward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/forward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgForwardUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/forward", + "ApiVersion": "v1.0", "Variants": [ "Forward", "ForwardExpanded", "ForwardViaIdentity", "ForwardViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-forward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgFunctionApplicationSynchronizationJobSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "v1.0", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "v1.0", + "Variants": [ + "Function", + "FunctionViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -341908,19 +357206,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFunctionApplicationSynchronizationTemplateSchema", + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "ApiVersion": "v1.0", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/functions", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -341939,19 +357238,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFunctionServicePrincipalSynchronizationJobSchema", + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "ApiVersion": "v1.0", "Variants": [ "Function", "FunctionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/functions", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -341970,80 +357270,77 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgFunctionServicePrincipalSynchronizationTemplateSchema", - "Variants": [ - "Function", - "FunctionViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-functions?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAttributeMappingFunctionSchema" }, { - "Uri": "/chats/{chat-id}/unhideForUser", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgGraphChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/unhideForUser", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgGraphDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/sharedWithMe", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/unsubscribeByMail", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgGraphGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/unsubscribeByMail", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-unsubscribebymail?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgGraphGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/sharedWithMe", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/reports/authenticationMethods/usersRegisteredByFeature", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgGraphReportAuthenticationMethod", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-1.0", + "Uri": "/reports/authenticationMethods/usersRegisteredByFeature", + "ApiVersion": "v1.0", "Variants": [ "Graph", "Graph1", @@ -342052,43 +357349,54 @@ "GraphViaIdentity", "GraphViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethodsroot-usersregisteredbyfeature?view=graph-rest-1.0" + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationFeatureSummary" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/unhideForUser", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgGraphUserChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/unhideForUser", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphExpanded", "GraphViaIdentity", "GraphViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-unhideforuser?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/sharedWithMe", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgGraphUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/sharedWithMe", + "ApiVersion": "v1.0", "Variants": [ "Graph", "GraphViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-sharedwithme?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgHaveTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", "Uri": "/teams/{team-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "v1.0", + "Variants": [ + "Have", + "HaveViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.Read.All", @@ -342107,47 +357415,52 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Invoke-MgHaveTeamChannel", - "Variants": [ - "Have", - "HaveViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgHaveTeamPrimaryChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "v1.0", "Variants": [ "Have", "HaveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgHaveTeamworkDeletedTeamChannel", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/doesUserHaveAccess(userId='@userId',tenantId='@tenantId',userPrincipalName='@userPrincipalName')", + "ApiVersion": "v1.0", "Variants": [ "Have", "HaveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-doesuserhaveaccess?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgInstantiateApplicationTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0", "Uri": "/applicationTemplates/{applicationTemplate-id}/instantiate", + "ApiVersion": "v1.0", + "Variants": [ + "Instantiate", + "InstantiateExpanded", + "InstantiateViaIdentity", + "InstantiateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -342174,37 +357487,39 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgInstantiateApplicationTemplate", - "Variants": [ - "Instantiate", - "InstantiateExpanded", - "InstantiateViaIdentity", - "InstantiateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplicationServicePrincipal", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/applicationtemplate-instantiate?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplicationServicePrincipal" }, { - "Uri": "/communications/calls/{call-id}/participants/invite", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteCommunicationCallParticipant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/participants/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInviteParticipantsOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphInviteParticipantsOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgInviteDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "v1.0", + "Variants": [ + "Invite", + "InviteExpanded", + "InviteViaIdentity", + "InviteViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -342231,101 +357546,105 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgInviteDriveItem", - "Variants": [ - "Invite", - "InviteExpanded", - "InviteViaIdentity", - "InviteViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/invite", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/invite", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/invite", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgInviteUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/invite", + "ApiVersion": "v1.0", "Variants": [ "Invite", "InviteExpanded", "InviteViaIdentity", "InviteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-invite?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgKeepCommunicationCallAlive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/keepAlive", + "ApiVersion": "v1.0", + "Variants": [ + "Keep", + "KeepViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -342344,19 +357663,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgKeepCommunicationCallAlive", - "Variants": [ - "Keep", - "KeepViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-keepalive?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgLicenseUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-1.0", "Uri": "/users/{user-id}/reprocessLicenseAssignment", + "ApiVersion": "v1.0", + "Variants": [ + "License", + "LicenseViaIdentity" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -342375,153 +357695,165 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Invoke-MgLicenseUser", - "Variants": [ - "License", - "LicenseViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reprocesslicenseassignment?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/communications/calls/logTeleconferenceDeviceQuality", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgLogCommunicationCallTeleconferenceDeviceQuality", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0", + "Uri": "/communications/calls/logTeleconferenceDeviceQuality", + "ApiVersion": "v1.0", "Variants": [ "Log", "LogExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-logteleconferencedevicequality?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgLogoutDeviceManagementManagedDeviceSharedAppleDeviceActiveUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "v1.0", "Variants": [ "Logout", "LogoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgLogoutUserManagedDeviceSharedAppleDeviceActiveUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logoutSharedAppleDeviceActiveUser", + "ApiVersion": "v1.0", "Variants": [ "Logout", "LogoutViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-logoutsharedappledeviceactiveuser?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/markChatReadForUser", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkChatReadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/markChatReadForUser", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/markChatUnreadForUser", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkChatUnreadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/markChatUnreadForUser", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/markRead", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkServiceAnnouncementMessageRead", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/markRead", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markread?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/markUnread", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkServiceAnnouncementMessageUnread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/markUnread", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-markunread?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/markChatReadForUser", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkUserChatReadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/markChatReadForUser", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatreadforuser?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/markChatUnreadForUser", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgMarkUserChatUnreadForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/markChatUnreadForUser", + "ApiVersion": "v1.0", "Variants": [ "Mark", "MarkExpanded", "MarkViaIdentity", "MarkViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-markchatunreadforuser?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgMuteCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/mute", + "ApiVersion": "v1.0", + "Variants": [ + "Mute", + "MuteExpanded", + "MuteViaIdentity", + "MuteViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -342540,21 +357872,22 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgMuteCommunicationCall", + "OutputType": "IMicrosoftGraphMuteParticipantOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgMuteCommunicationCallParticipant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "ApiVersion": "v1.0", "Variants": [ "Mute", "MuteExpanded", "MuteViaIdentity", "MuteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-mute?view=graph-rest-1.0" - }, - { - "Uri": "/communications/calls/{call-id}/participants/{participant-id}/mute", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -342573,53 +357906,56 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgMuteCommunicationCallParticipant", - "Variants": [ - "Mute", - "MuteExpanded", - "MuteViaIdentity", - "MuteViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-mute?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphMuteParticipantOperation" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgParseApplicationSynchronizationJobSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "v1.0", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgParseApplicationSynchronizationTemplateSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "v1.0", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/parseExpression", + "ApiVersion": "v1.0", + "Variants": [ + "Parse", + "ParseExpanded", + "ParseViaIdentity", + "ParseViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -342638,21 +357974,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgParseServicePrincipalSynchronizationJobSchemaExpression", + "OutputType": "IMicrosoftGraphParseExpressionResponse" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "ApiVersion": "v1.0", "Variants": [ "Parse", "ParseExpanded", "ParseViaIdentity", "ParseViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/parseExpression", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -342671,35 +358008,54 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Invoke-MgParseServicePrincipalSynchronizationTemplateSchemaExpression", - "Variants": [ - "Parse", - "ParseExpanded", - "ParseViaIdentity", - "ParseViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParseExpressionResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationschema-parseexpression?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphParseExpressionResponse" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/pin", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPinEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/pin", + "ApiVersion": "v1.0", "Variants": [ "Pin", "PinViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-pin?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgPlayCommunicationCallPrompt", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/playPrompt", + "ApiVersion": "v1.0", + "Variants": [ + "Play", + "PlayExpanded", + "PlayViaIdentity", + "PlayViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -342718,21 +358074,22 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgPlayCommunicationCallPrompt", - "Variants": [ - "Play", - "PlayExpanded", - "PlayViaIdentity", - "PlayViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlayPromptOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-playprompt?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPlayPromptOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgPreviewDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "v1.0", + "Variants": [ + "Preview", + "PreviewExpanded", + "PreviewViaIdentity", + "PreviewViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.Read", @@ -342783,213 +358140,225 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Invoke-MgPreviewDriveItem", - "Variants": [ - "Preview", - "PreviewExpanded", - "PreviewViaIdentity", - "PreviewViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPreviewDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/preview", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPreviewGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPreviewGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/preview", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPreviewUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/preview", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPreviewUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewExpanded", "PreviewViaIdentity", "PreviewViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemPreviewInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemPreviewInfo" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgPreviewUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/preview", + "ApiVersion": "v1.0", "Variants": [ "Preview", "PreviewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePagePreview", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePagePreview" }, { - "Uri": "/domains/{domain-id}/promote", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgPromoteDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-1.0", + "Uri": "/domains/{domain-id}/promote", + "ApiVersion": "v1.0", "Variants": [ "Promote", "PromoteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-promote?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgQuerySearch", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-1.0", "Uri": "/search/query", + "ApiVersion": "v1.0", + "Variants": [ + "Query", + "QueryExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "Mail.Read", @@ -343064,19 +358433,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Invoke-MgQuerySearch", - "Variants": [ - "Query", - "QueryExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchResponse", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/search-query?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphSearchResponse" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "v1.0", + "Variants": [ + "Reassign", + "ReassignViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -343103,519 +358473,555 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Invoke-MgReassignEducationClassAssignmentSubmission", - "Variants": [ - "Reassign", - "ReassignViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReassignEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "v1.0", "Variants": [ "Reassign", "ReassignViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReassignEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/reassign", + "ApiVersion": "v1.0", "Variants": [ "Reassign", "ReassignViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-reassign?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeGroupDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeGroupSiteListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeShareListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeSiteListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveItemSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveListSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReauthorizeUserDriveRootSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}/reauthorize", + "ApiVersion": "v1.0", "Variants": [ "Reauthorize", "ReauthorizeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-reauthorize?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgRecentDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/recent", + "ApiVersion": "v1.0", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgRecentGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/recent", + "ApiVersion": "v1.0", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/activities/recent", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgRecentUserActivity", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0", + "Uri": "/users/{user-id}/activities/recent", + "ApiVersion": "v1.0", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/projectrome-get-recent-activities?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/recent", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgRecentUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/recent", + "ApiVersion": "v1.0", "Variants": [ "Recent", "RecentViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/drive-recent?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/communications/calls/{call-id}/recordResponse", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRecordCommunicationCallResponse", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/recordResponse", + "ApiVersion": "v1.0", "Variants": [ "Record", "RecordExpanded", "RecordViaIdentity", "RecordViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRecordOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-record?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecordOperation" }, { - "Uri": "/communications/calls/{call-id}/redirect", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRedirectCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/redirect", + "ApiVersion": "v1.0", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-redirect?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/redirect", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRedirectPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0", + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/redirect", + "ApiVersion": "v1.0", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/redirect", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRedirectPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/redirect", + "ApiVersion": "v1.0", "Variants": [ "Redirect", "RedirectExpanded", "RedirectViaIdentity", "RedirectViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-redirect?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/communications/calls/{call-id}/reject", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRejectCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/reject", + "ApiVersion": "v1.0", "Variants": [ "Reject", "RejectExpanded", "RejectViaIdentity", "RejectViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-reject?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphAndroidLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphiOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSDmgAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphMacOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedAndroidLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagediOSLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphManagedMobileLobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWin32LobAppContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsAppXContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsMobileMsiContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRenewDeviceAppManagementMobileAppMicrosoftGraphWindowsUniversalAppXContentVersionFileUpload", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}/renewUpload", + "ApiVersion": "v1.0", "Variants": [ "Renew", "RenewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgRenewGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-1.0", "Uri": "/groups/{group-id}/renew", + "ApiVersion": "v1.0", + "Variants": [ + "Renew", + "RenewViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -343634,19 +359040,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgRenewGroup", - "Variants": [ - "Renew", - "RenewViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-renew?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReopenSecurityCaseEdiscoveryCase", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reopen", + "ApiVersion": "v1.0", + "Variants": [ + "Reopen", + "ReopenViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -343665,67 +359072,73 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Invoke-MgReopenSecurityCaseEdiscoveryCase", - "Variants": [ - "Reopen", - "ReopenViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycase-reopen?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyAllUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/replyAll", + "ApiVersion": "v1.0", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyAllUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/replyAll", + "ApiVersion": "v1.0", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/replyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyAllUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/replyAll", + "ApiVersion": "v1.0", "Variants": [ "Reply1", "ReplyExpanded1", "ReplyViaIdentity1", "ReplyViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-replyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReplyGroupConversationThread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0", "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "v1.0", + "Variants": [ + "Reply", + "ReplyExpanded", + "ReplyViaIdentity", + "ReplyViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -343744,21 +359157,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgReplyGroupConversationThread", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReplyGroupConversationThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -343777,37 +359191,39 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgReplyGroupConversationThreadPost", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", - "Permissions": [], - "Module": "Groups", - "Command": "Invoke-MgReplyGroupConversationThreadPostInReplyTo", + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReplyGroupThread", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/reply", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -343826,21 +359242,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgReplyGroupThread", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReplyGroupThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/post-reply?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/reply", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -343859,183 +359276,193 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Invoke-MgReplyGroupThreadPost", - "Variants": [ - "Reply", - "ReplyExpanded", - "ReplyViaIdentity", - "ReplyViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyGroupThreadPostInReplyTo", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/reply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReplyUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/reply", + "ApiVersion": "v1.0", "Variants": [ "Reply", "ReplyExpanded", "ReplyViaIdentity", "ReplyViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-reply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgReportServiceAnnouncementHealthOverviewIssueIncident", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}/incidentReport", + "ApiVersion": "v1.0", "Variants": [ "Report", "ReportViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgReportServiceAnnouncementIssueIncident", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}/incidentReport", + "ApiVersion": "v1.0", "Variants": [ "Report", "ReportViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/servicehealthissue-incidentreport?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRetireDeviceManagementManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "v1.0", "Variants": [ "Retire", "RetireViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRetireUserManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/retire", + "ApiVersion": "v1.0", "Variants": [ "Retire", "RetireViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-retire?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRetryContactServiceProvisioning", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}/retryServiceProvisioning", + "ApiVersion": "v1.0", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRetryGroupServiceProvisioning", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/retryServiceProvisioning", + "ApiVersion": "v1.0", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-retryserviceprovisioning?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/retryServiceProvisioning", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgRetryUserServiceProvisioning", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0", + "Uri": "/users/{user-id}/retryServiceProvisioning", + "ApiVersion": "v1.0", "Variants": [ "Retry", "RetryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-retryserviceprovisioning?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "v1.0", + "Variants": [ + "Return", + "ReturnViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -344054,95 +359481,103 @@ "IsLeastPrivilege": true } ], - "Module": "Education", - "Command": "Invoke-MgReturnEducationClassAssignmentSubmission", - "Variants": [ - "Return", - "ReturnViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReturnEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "v1.0", "Variants": [ "Return", "ReturnViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgReturnEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/return", + "ApiVersion": "v1.0", "Variants": [ "Return", "ReturnViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-return?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgScanDeviceManagementManagedDeviceWindowsDefender", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "v1.0", "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgScanUserManagedDeviceWindowsDefender", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderScan", + "ApiVersion": "v1.0", "Variants": [ "Scan", "ScanExpanded", "ScanViaIdentity", "ScanViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderscan?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgScheduleDeviceManagementDeviceCompliancePolicyActionForRule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-scheduleactionsforrules?view=graph-rest-1.0", + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduleActionsForRules", + "ApiVersion": "v1.0", "Variants": [ "Schedule", "ScheduleExpanded", "ScheduleViaIdentity", "ScheduleViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-scheduleactionsforrules?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgShareTeamSchedule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-1.0", "Uri": "/teams/{team-id}/schedule/share", + "ApiVersion": "v1.0", + "Variants": [ + "Share", + "ShareExpanded", + "ShareViaIdentity", + "ShareViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -344161,255 +359596,270 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Invoke-MgShareTeamSchedule", - "Variants": [ - "Share", - "ShareExpanded", - "ShareViaIdentity", - "ShareViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schedule-share?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSnoozeGroupCalendarEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSnoozeGroupEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSnoozeUserEventInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/snoozeReminder", + "ApiVersion": "v1.0", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSnoozeUserEventReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/snoozeReminder", + "ApiVersion": "v1.0", "Variants": [ "Snooze", "SnoozeExpanded", "SnoozeViaIdentity", "SnoozeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-snoozereminder?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftChatMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftChatMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamPrimaryChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamPrimaryChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftTeamworkDeletedTeamChannelMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/softDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftUserChatMessageDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSoftUserChatMessageReplyDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/softDelete", + "ApiVersion": "v1.0", "Variants": [ "Soft", "SoftViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-softdelete?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/subscribeToTone", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSubscribeCommunicationCallToTone", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/subscribeToTone", + "ApiVersion": "v1.0", "Variants": [ "Subscribe", "SubscribeExpanded", "SubscribeViaIdentity", "SubscribeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribeToToneOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-subscribetotone?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribeToToneOperation" }, { - "Uri": "/groups/{group-id}/subscribeByMail", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgSubscribeGroupByMail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/subscribeByMail", + "ApiVersion": "v1.0", "Variants": [ "Subscribe", "SubscribeViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-subscribebymail?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/summarizeDevicePerformanceDevices(summarizeBy='{summarizeBy}')", + "ApiVersion": "v1.0", + "Variants": [ + "Summarize", + "SummarizeViaIdentity" + ], + "Module": "DeviceManagement.Functions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -344444,19 +359894,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Functions", - "Command": "Invoke-MgSummarizeDeviceManagementUserExperienceAnalyticDevicePerformanceDevice", - "Variants": [ - "Summarize", - "SummarizeViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun", + "ApiReferenceLink": null, "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", + "Variants": [ + "Summary", + "SummaryViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -344475,19 +359926,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRun", + "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary" + }, + { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceRunSummary", - "Method": "GET", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "Module": "Identity.Governance", "Permissions": [ { "Name": "LifecycleWorkflows.Read.All", @@ -344506,47 +359958,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowRunUserProcessingResult", - "Variants": [ - "Summary", - "SummaryViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowTaskReport", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTaskReportSummary" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgSummaryIdentityGovernanceLifecycleWorkflowUserProcessingResult", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/summary(startDateTime={startDateTime},endDateTime={endDateTime})", + "ApiVersion": "v1.0", "Variants": [ "Summary", "SummaryViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceUserSummary" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgSupportedUserOutlookLanguage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-1.0", "Uri": "/users/{user-id}/outlook/supportedLanguages", + "ApiVersion": "v1.0", + "Variants": [ + "Supported", + "SupportedViaIdentity" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -344573,19 +360028,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Invoke-MgSupportedUserOutlookLanguage", - "Variants": [ - "Supported", - "SupportedViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocaleInfo", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/outlookuser-supportedlanguages?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphLocaleInfo" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", + "Variants": [ + "Target", + "TargetExpanded", + "TargetViaIdentity", + "TargetViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -344604,21 +360062,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Invoke-MgTargetDeviceAppManagementManagedAppPolicyApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}/targetApps", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -344637,21 +360096,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationAppliedPolicyApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "ApiVersion": "v1.0", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" - }, - { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}/targetApps", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -344670,37 +360130,37 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Invoke-MgTargetDeviceAppManagementManagedAppRegistrationIntendedPolicyApp", - "Variants": [ - "Target", - "TargetExpanded", - "TargetViaIdentity", - "TargetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgTargetDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappconfiguration-targetapps?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/targetApps", + "ApiVersion": "v1.0", "Variants": [ "Target", "TargetExpanded", "TargetViaIdentity", "TargetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappconfiguration-targetapps?view=graph-rest-1.0" + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgTerminateDeviceManagementPartner", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementpartner-terminate?view=graph-rest-1.0", "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}/terminate", + "ApiVersion": "v1.0", + "Variants": [ + "Terminate", + "TerminateViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -344719,19 +360179,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Invoke-MgTerminateDeviceManagementPartner", - "Variants": [ - "Terminate", - "TerminateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementpartner-terminate?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgTimeUserOutlook", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/outlook/supportedTimeZones", + "ApiVersion": "v1.0", + "Variants": [ + "Time", + "Time1", + "TimeViaIdentity", + "TimeViaIdentity1" + ], + "Module": "Users.Functions", "Permissions": [ { "Name": "User.Read.All", @@ -344758,21 +360221,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Functions", - "Command": "Invoke-MgTimeUserOutlook", - "Variants": [ - "Time", - "Time1", - "TimeViaIdentity", - "TimeViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeZoneInformation", - "Method": "GET", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTimeZoneInformation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgTranslateUserExchangeId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-1.0", "Uri": "/users/{user-id}/translateExchangeIds", + "ApiVersion": "v1.0", + "Variants": [ + "Translate", + "TranslateExpanded", + "TranslateViaIdentity", + "TranslateViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "User.ReadBasic.All", @@ -344815,49 +360279,50 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Invoke-MgTranslateUserExchangeId", - "Variants": [ - "Translate", - "TranslateExpanded", - "TranslateViaIdentity", - "TranslateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConvertIdResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-translateexchangeids?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphConvertIdResult" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/troubleshoot", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgTroubleshootDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/troubleshoot", + "ApiVersion": "v1.0", "Variants": [ "Troubleshoot", "TroubleshootViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-troubleshoot?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/unarchive", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnarchiveServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/unarchive", + "ApiVersion": "v1.0", "Variants": [ "Unarchive", "UnarchiveExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unarchive?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgUnarchiveTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-1.0", "Uri": "/teams/{team-id}/unarchive", + "ApiVersion": "v1.0", + "Variants": [ + "Unarchive", + "UnarchiveViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -344892,19 +360357,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Invoke-MgUnarchiveTeam", - "Variants": [ - "Unarchive", - "UnarchiveViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-unarchive?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-unassignuserfromdevice?view=graph-rest-1.0", "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/unassignUserFromDevice", + "ApiVersion": "v1.0", + "Variants": [ + "Unassign", + "UnassignViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -344923,117 +360389,127 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Invoke-MgUnassignDeviceManagementWindowsAutopilotDeviceIdentityUserFromDevice", - "Variants": [ - "Unassign", - "UnassignViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-unassignuserfromdevice?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/unfavorite", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfavoriteServiceAnnouncementMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-1.0", + "Uri": "/admin/serviceAnnouncement/messages/unfavorite", + "ApiVersion": "v1.0", "Variants": [ "Unfavorite", "UnfavoriteExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceupdatemessage-unfavorite?view=graph-rest-1.0" + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/unfollow", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnfollowUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/unfollow", + "ApiVersion": "v1.0", "Variants": [ "Unfollow", "UnfollowViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-unfollow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgUnmuteCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/unmute", + "ApiVersion": "v1.0", + "Variants": [ + "Unmute", + "UnmuteExpanded", + "UnmuteViaIdentity", + "UnmuteViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -345052,35 +360528,52 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Invoke-MgUnmuteCommunicationCall", - "Variants": [ - "Unmute", - "UnmuteExpanded", - "UnmuteViaIdentity", - "UnmuteViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnmuteParticipantOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-unmute?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUnmuteParticipantOperation" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/unpin", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnpinEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/unpin", + "ApiVersion": "v1.0", "Variants": [ "Unpin", "UnpinViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-unpin?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "v1.0", + "Variants": [ + "Unsubmit", + "UnsubmitViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -345107,109 +360600,116 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Invoke-MgUnsubmitEducationClassAssignmentSubmission", - "Variants": [ - "Unsubmit", - "UnsubmitViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnsubmitEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "v1.0", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUnsubmitEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/unsubmit", + "ApiVersion": "v1.0", "Variants": [ "Unsubmit", "UnsubmitViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-unsubmit?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}/uploadClientCertificate", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUploadIdentityApiConnectorClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", + "Uri": "/identity/apiConnectors/{identityApiConnector-id}/uploadClientCertificate", + "ApiVersion": "v1.0", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostAttributeCollectionClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/uploadClientCertificate", + "ApiVersion": "v1.0", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Invoke-MgUploadIdentityB2XUserFlowApiConnectorConfigurationPostFederationSignupClientCertificate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/uploadClientCertificate", + "ApiVersion": "v1.0", "Variants": [ "Upload", "UploadExpanded", "UploadViaIdentity", "UploadViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityapiconnector-uploadclientcertificate?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/usage", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgUsageIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0", + "Uri": "/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/usage", + "ApiVersion": "v1.0", "Variants": [ "Usage", "UsageViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0", "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/usage", + "ApiVersion": "v1.0", + "Variants": [ + "Usage", + "UsageViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -345236,113 +360736,122 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Invoke-MgUsagePolicyAuthenticationStrengthPolicy", - "Variants": [ - "Usage", - "UsageViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-usage?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAuthenticationStrengthUsage" }, { - "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Invoke-MgViewUserReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-1.0", + "Uri": "/users/{user-id}/reminderView(StartDateTime='{StartDateTime}',EndDateTime='{EndDateTime}')", + "ApiVersion": "v1.0", "Variants": [ "View", "ViewViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphReminder", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-reminderview?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphReminder" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaGroupDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaGroupSiteContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaGroupSiteListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaShareListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Join-MgBetaSiteContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", + "Variants": [ + "Associate", + "AssociateExpanded", + "AssociateViaIdentity", + "AssociateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -345361,133 +360870,141 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Join-MgBetaSiteContentTypeWithHubSite", - "Variants": [ - "Associate", - "AssociateExpanded", - "AssociateViaIdentity", - "AssociateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaSiteListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgBetaUserDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "beta", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgGroupDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgGroupSiteContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgGroupSiteListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgShareListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Join-MgSiteContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", + "Variants": [ + "Associate", + "AssociateExpanded", + "AssociateViaIdentity", + "AssociateViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -345506,139 +361023,146 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Join-MgSiteContentTypeWithHubSite", - "Variants": [ - "Associate", - "AssociateExpanded", - "AssociateViaIdentity", - "AssociateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgSiteListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Join-MgUserDriveListContentTypeWithHubSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/associateWithHubSites", + "ApiVersion": "v1.0", "Variants": [ "Associate", "AssociateExpanded", "AssociateViaIdentity", "AssociateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-associatewithhubsites?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/remoteLock", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Lock-MgBetaDeviceManagementComanagedDeviceRemote", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Variants": [ "Lock", "LockViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Lock-MgBetaDeviceManagementManagedDeviceRemote", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Variants": [ "Lock", "LockViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Lock-MgBetaUserManagedDeviceRemote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "beta", "Variants": [ "Lock", "LockViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Lock-MgDeviceManagementManagedDeviceRemote", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "v1.0", "Variants": [ "Lock", "LockViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Lock-MgUserManagedDeviceRemote", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/remoteLock", + "ApiVersion": "v1.0", "Variants": [ "Lock", "LockViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-remotelock?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/transfer", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/transfer", + "ApiVersion": "beta", "Variants": [ "Transfer", "TransferExpanded", "TransferViaIdentity", "TransferViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Move-MgBetaDeviceManagementComanagedDeviceToOu", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/moveDevicesToOU", + "ApiVersion": "beta", + "Variants": [ + "Move", + "MoveExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -345657,35 +361181,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Move-MgBetaDeviceManagementComanagedDeviceToOu", - "Variants": [ - "Move", - "MoveExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/migrateToTemplate", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaDeviceManagementIntentToTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/migrateToTemplate", + "ApiVersion": "beta", "Variants": [ "Migrate", "MigrateExpanded", "MigrateViaIdentity", "MigrateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Move-MgBetaDeviceManagementManagedDeviceToOu", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/moveDevicesToOU", + "ApiVersion": "beta", + "Variants": [ + "Move", + "MoveExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -345704,429 +361230,456 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Move-MgBetaDeviceManagementManagedDeviceToOu", - "Variants": [ - "Move", - "MoveExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/moveToCatalog", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaEntitlementManagementAccessPackageToCatalog", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/moveToCatalog", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackage-movetocatalog?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/moveToContainer", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaGroupPlannerPlanToContainer", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/moveToContainer", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/planner/plans/{plannerPlan-id}/moveToContainer", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaPlannerPlanToContainer", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", + "Uri": "/planner/plans/{plannerPlan-id}/moveToContainer", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta" + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserMailFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/move", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/move", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/managedDevices/moveDevicesToOU", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserManagedDeviceToOu", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/moveDevicesToOU", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/move", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/move", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/moveToContainer", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgBetaUserPlannerPlanToContainer", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta", + "Uri": "/users/{user-id}/planner/plans/{plannerPlan-id}/moveToContainer", + "ApiVersion": "beta", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/plannerplan-movetocontainer?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlan" }, { - "Uri": "/communications/calls/{call-id}/transfer", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgCommunicationCall", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/transfer", + "ApiVersion": "v1.0", "Variants": [ "Transfer", "TransferExpanded", "TransferViaIdentity", "TransferViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-transfer?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgUserMailFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/move", + "ApiVersion": "v1.0", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgUserMailFolderChildFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/move", + "ApiVersion": "v1.0", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/mailfolder-move?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/move", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/move", + "ApiVersion": "v1.0", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/move", + "ApiVersion": "v1.0", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/move", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Move-MgUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/move", + "ApiVersion": "v1.0", "Variants": [ "Move", "MoveExpanded", "MoveViaIdentity", "MoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-move?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSite" }, { - "Uri": "/admin/people/profileCardProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "Uri": "/agreements", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -346153,19 +361706,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgAppCatalogTeamApp", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -346192,21 +361748,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgAppCatalogTeamAppDefinition", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0", "Uri": "/applications", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -346225,19 +361780,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplication", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationAppManagementPolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -346264,21 +361822,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationAppManagementPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationExtensionProperty", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/extensionProperties", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -346305,21 +361864,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationExtensionProperty", + "OutputType": "IMicrosoftGraphExtensionProperty" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -346338,21 +361898,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationFederatedIdentityCredential", + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/owners/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -346387,101 +361948,107 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationOwnerByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgApplicationSynchronizationJobOnDemand", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "v1.0", "Variants": [ "Provision", "ProvisionExpanded", "ProvisionViaIdentity", "ProvisionViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgApplicationSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationTokenIssuancePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -346524,21 +362091,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationTokenIssuancePolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgApplicationTokenLifetimePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -346581,21 +362149,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgApplicationTokenLifetimePolicyByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-beta", "Uri": "/accessReviews", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -346614,115 +362181,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaAccessReview", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-create?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewInstance", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewInstanceReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/accessReviews/{accessReview-id}/myDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAccessReviewMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/myDecisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAccessReviewReviewer", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/reviewers", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -346741,97 +362317,103 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaAccessReviewReviewer", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSite" }, { - "Uri": "/administrativeUnits", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdministrativeUnit", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-post-administrativeunits?view=graph-rest-beta", + "Uri": "/administrativeUnits", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-post-administrativeunits?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -346850,21 +362432,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "New-MgBetaAdministrativeUnitMember", + "OutputType": "IMicrosoftGraphDirectoryObject" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -346883,145 +362466,152 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "New-MgBetaAdministrativeUnitMemberByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/admin/people/profileCardProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "Uri": "/agreements", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -347048,19 +362638,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaAppCatalogTeamApp", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsApp" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -347087,37 +362680,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaAppCatalogTeamAppDefinition", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaAppCatalogTeamAppDefinitionDashboardCard", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-beta", "Uri": "/applications", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -347136,19 +362729,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplication", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-post-applications?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationAppManagementPolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/appManagementPolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.Read.All", @@ -347175,21 +362771,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationAppManagementPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationExtensionProperty", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/extensionProperties", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/extensionProperties", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -347216,21 +362813,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationExtensionProperty", + "OutputType": "IMicrosoftGraphExtensionProperty" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -347249,21 +362847,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationFederatedIdentityCredential", + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/owners/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -347298,101 +362897,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationOwnerByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJobOnDemand", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "beta", "Variants": [ "Provision", "ProvisionExpanded", "ProvisionViaIdentity", "ProvisionViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationTokenIssuancePolicyByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -347435,21 +363040,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationTokenIssuancePolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaApplicationTokenLifetimePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -347492,37 +363098,43 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaApplicationTokenLifetimePolicyByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/bookingBusinesses", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaBookingBusiness", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", "CreateExpanded", "CreateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "Create1", + "CreateExpanded", + "CreateExpanded1", + "CreateViaIdentity", + "CreateViaIdentity1", + "CreateViaIdentityExpanded", + "CreateViaIdentityExpanded1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -347557,8 +363169,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -347569,16 +363188,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -347589,13 +363209,7 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -347622,8 +363236,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessCustomer", + "OutputType": "IMicrosoftGraphBookingCustomer" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -347634,13 +363255,7 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomer", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -347667,8 +363282,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -347679,13 +363301,7 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/services", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -347704,8 +363320,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -347716,13 +363339,7 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -347741,55 +363358,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBookingBusinessStaffMember", - "Variants": [ - "Create", - "Create1", - "CreateExpanded", - "CreateExpanded1", - "CreateViaIdentity", - "CreateViaIdentity1", - "CreateViaIdentityExpanded", - "CreateViaIdentityExpanded1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "Uri": "/bookingCurrencies", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", "CreateExpanded", "CreateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "Uri": "/businessFlowTemplates", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaBusinessFlowTemplate", + "ApiReferenceLink": null, + "Uri": "/businessFlowTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBusinessScenario", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -347808,19 +363422,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBusinessScenario", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBusinessScenario" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -347839,37 +363456,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "New-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaBusinessScenarioPlannerTask", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-beta", "Uri": "/chats", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.Create", @@ -347888,19 +363505,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChat", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -347991,21 +363611,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChatInstalledApp", + "OutputType": "IMicrosoftGraphTeamsAppInstallation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChatMember", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/members", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMember.ReadWrite", @@ -348048,21 +363669,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChatMember", + "OutputType": "IMicrosoftGraphConversationMember" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChatMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/messages", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMessage.Send", @@ -348097,101 +363719,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChatMessage", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, - { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaChatOperation", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMessage.Send", @@ -348218,21 +363846,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChatPinnedMessage", + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaChatTab", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/tabs", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Create", @@ -348299,21 +363928,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaChatTab", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaCommunicationCall", + "ApiReferenceLink": null, "Uri": "/communications/calls", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCalls.Chat", @@ -348356,19 +363984,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "New-MgBetaCommunicationCall", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCall", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCall" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -348387,134 +364018,132 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "New-MgBetaCommunicationCallAudioRoutingGroup", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/participants", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationCallParticipant", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParticipant" }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationCallRecordParticipantV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsParticipant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/onlineMeetings", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -348525,91 +364154,105 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/presences", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348628,19 +364271,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCase", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348659,21 +364305,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseCustodian", + "OutputType": "IMicrosoftGraphEdiscoveryCustodian" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348692,37 +364339,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources", - "Permissions": [], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348741,21 +364390,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348774,21 +364424,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHold", + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348807,37 +364458,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources", - "Permissions": [], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348856,21 +364509,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348889,37 +364543,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations", - "Permissions": [], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseOperation", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348938,21 +364594,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSet", + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -348971,21 +364628,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollection", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -349004,21 +364662,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollection", + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -349037,21 +364696,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaComplianceEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -349070,91 +364730,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "New-MgBetaComplianceEdiscoveryCaseTag", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "Uri": "/contacts", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaContact", + "ApiReferenceLink": null, + "Uri": "/contacts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contracts", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaContract", + "ApiReferenceLink": null, + "Uri": "/contracts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/dataPolicyOperations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/devices", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-beta", + "Uri": "/devices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtAndroidManagedAppProtection", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349173,37 +364839,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtDefaultManagedAppProtection", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349222,19 +364888,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349253,127 +364922,135 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificate", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSLobAppProvisioningConfiguration", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSManagedAppProtection", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349392,51 +365069,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/deviceAppManagement/managedAppPolicies", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppPolicy", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppRegistration", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349455,67 +365133,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementManagedAppRegistration", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequest", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppRegistrationOperation", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349534,157 +365218,167 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { - "Uri": "/deviceAppManagement/managedAppStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedAppStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedEBooks", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBook", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBook" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBookAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookAssignment" }, { - "Uri": "/deviceAppManagement/managedEBookCategories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBookCategory", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBookCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookCategory" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBookDeviceState", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBookUserStateSummary", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInstallStateSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349703,21 +365397,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -349736,1513 +365431,1608 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/deviceAppManagement/mobileApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", - "Permissions": [], "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicense", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppCatalogPackage", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppCatalogPackage", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCatalogPackage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCatalogPackage" }, { - "Uri": "/deviceAppManagement/mobileAppCategories", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppCategory", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtMobileAppRelationship", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/policySets", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtPolicySet", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementPolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySet" }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtPolicySetAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementPolicySetAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySetAssignment" }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtPolicySetItem", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementPolicySetItem", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySetItem" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -351261,37 +367051,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "CommandAlias": "New-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351310,21 +367102,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtTask", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementTask", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/deviceAppManagementTasks", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351343,19 +367134,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementTask", + "OutputType": "IMicrosoftGraphDeviceAppManagementTask" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtVppToken", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -351374,65 +367166,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementVppToken", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphVppToken" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtWdacSupplementalPolicyDeviceStatus", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistration", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351451,19 +367247,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -351482,35 +367279,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" }, { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -351529,21 +367330,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -351562,21 +367364,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowInformationProtectionWipeAction", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351595,19 +367396,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction" + }, + { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowManagedAppProtection", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351626,19 +367428,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsManagedAppProtection", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsManagedAppProtection" }, { + "CommandAlias": "New-MgBetaDeviceAppMgtWindowManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -351657,185 +367462,194 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "New-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "New-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignment", + "Method": "POST", "Command": "New-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/devices/{device-id}/commands", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/createToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/createToken", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/createToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/createToken", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/createGooglePlayWebToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingGooglePlayWebToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/createGooglePlayWebToken", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/applePushNotificationCertificate/generateApplePushNotificationCertificateSigningRequest", + "ApiVersion": "beta", + "Variants": [ + "Generate" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -351854,150 +367668,161 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementApplePushNotificationCertificateApplePushNotificationCertificateSigningRequest", - "Variants": [ - "Generate" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "Uri": "/deviceManagement/assignmentFilters", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "Uri": "/deviceManagement/auditEvents", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuditEvent" }, { - "Uri": "/deviceManagement/autopilotEvents", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAutopilotEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "Uri": "/deviceManagement/cartToClassAssociations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCartToClassAssociation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "Uri": "/deviceManagement/categories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -352016,161 +367841,171 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementComanagedDevice", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceLogCollectionRequestDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementComanagementEligibleDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -352189,19 +368024,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementComanagementEligibleDevice", + "OutputType": "IMicrosoftGraphComanagementEligibleDevice" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/complianceManagementPartners", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -352220,233 +368056,248 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "Uri": "/deviceManagement/compliancePolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementCompliancePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "Uri": "/deviceManagement/complianceSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementComplianceSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/configurationPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/createCopy", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyCopy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/createCopy", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "Uri": "/deviceManagement/configurationSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDataSharingConsent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/dataSharingConsents", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -352465,33 +368316,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDataSharingConsent", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "Uri": "/deviceManagement/depOnboardingSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey", + "ApiReferenceLink": null, "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/generateEncryptionPublicKey", + "ApiVersion": "beta", + "Variants": [ + "Generate", + "GenerateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -352510,65 +368363,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementDepOnboardingSettingEncryptionPublicKey", - "Variants": [ - "Generate", - "GenerateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "Uri": "/deviceManagement/derivedCredentials", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDerivedCredential", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -352587,19 +368444,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -352618,309 +368476,329 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceCategory", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationConflictSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -352939,19 +368817,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -352970,21 +368851,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationEnrollmentNotificationConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/createEnrollmentNotificationConfiguration", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -353003,19 +368883,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementDeviceEnrollmentConfigurationEnrollmentNotificationConfiguration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -353034,19 +368915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceHealthScript", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScript" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -353065,21 +368949,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -353098,21 +368983,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -353131,19 +369015,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceShellScript", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceShellScript" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceShellScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -353162,21 +369049,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceShellScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -353195,21 +369083,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -353228,21 +369117,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -353261,97 +369151,101 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementDeviceShellScriptUserRunState", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "Uri": "/deviceManagement/domainJoinConnectors", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementDomainJoinConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/domainJoinConnectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -353370,583 +369264,621 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementExchangeConnector", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementExchangeOnPremisePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "Uri": "/deviceManagement/groupPolicyCategories", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/createMigrationReport", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/createMigrationReport", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "Uri": "/deviceManagement/groupPolicyObjectFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyObjectFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "Uri": "/deviceManagement/importedDeviceIdentities", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementImportedDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/intents", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategorySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/createCopy", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentCopy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/createCopy", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntentUserState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "Uri": "/deviceManagement/intuneBrandingProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIntuneBrandingProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "Uri": "/deviceManagement/iosUpdateStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -353965,111 +369897,120 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceCleanupRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDeviceEncryptionStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceEncryptionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceEncryptionStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -354088,155 +370029,165 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/microsoftTunnelConfigurations", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseDownloadUrl", + "ApiReferenceLink": null, "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateViaIdentity", + "Generate", + "GenerateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -354255,81 +370206,86 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponseDownloadUrl", - "Variants": [ - "Create", - "CreateViaIdentity", - "Generate", - "GenerateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelSites", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSite", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/createServerLogCollectionRequest", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServerLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}/createServerLogCollectionRequest", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -354348,21 +370304,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -354397,19 +370352,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "New-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", - "Variants": [ - "Create", - "CreateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -354428,91 +370384,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "Uri": "/deviceManagement/monitoring/alertRecords", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMonitoringAlertRecord", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "Uri": "/deviceManagement/monitoring/alertRules", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementMonitoringAlertRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "Uri": "/deviceManagement/ndesConnectors", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementNdeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/ndesConnectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphNdesConnector" }, { - "Uri": "/deviceManagement/notificationMessageTemplates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -354531,19 +370493,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRemoteActionAudit", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteActionAudits", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteActionAudits", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354562,19 +370525,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementRemoteActionAudit", + "OutputType": "IMicrosoftGraphRemoteActionAudit" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -354593,49 +370557,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { - "Uri": "/deviceManagement/resourceAccessProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementResourceAccessProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -354654,33 +370621,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementResourceOperation", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphResourceOperation" }, { - "Uri": "/deviceManagement/reusableSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementReusableSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusableSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -354699,19 +370668,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -354730,19 +370700,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -354761,21 +370734,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354794,49 +370766,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "New-MgBetaDeviceManagementRoleScopeTag", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleScopeTag" }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementRoleScopeTagAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "Uri": "/deviceManagement/deviceManagementScripts", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354855,21 +370832,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354888,21 +370866,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354921,21 +370900,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354954,21 +370934,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementScriptUserRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -354987,315 +370968,333 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "Uri": "/deviceManagement/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "Uri": "/deviceManagement/templates", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/createInstance", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateInstance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/createInstance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/createInstance", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToInstance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/createInstance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateMigratableToSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTemplateSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/termsAndConditions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTermAndConditionGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "Uri": "/deviceManagement/troubleshootingEvents", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355314,64 +371313,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355390,19 +371360,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355421,19 +371392,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355452,19 +371424,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355483,19 +371456,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355514,19 +371488,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355545,19 +371520,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355576,19 +371552,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355607,19 +371584,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355638,33 +371616,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355683,19 +371648,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355714,19 +371695,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355745,19 +371727,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355776,19 +371759,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355807,19 +371791,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355838,19 +371823,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355869,49 +371855,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", - "Permissions": [], "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355930,19 +371887,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, "Method": "POST", - "ApiReferenceLink": null + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355961,19 +371951,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -355992,19 +371983,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScopes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356023,19 +372015,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356054,19 +372047,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356085,19 +372079,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356116,33 +372111,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356161,19 +372143,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356192,19 +372190,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356223,19 +372222,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356254,19 +372254,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356285,19 +372286,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356316,19 +372318,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356347,19 +372350,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356378,19 +372382,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356409,19 +372414,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356440,21 +372446,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -356473,379 +372480,437 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "Uri": "/deviceManagement/userPfxCertificates", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementUserPfxCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userPfxCertificates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointBulkAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/createSnapshot", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointCloudPcSnapshot", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/createSnapshot", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExportJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "Uri": "/deviceManagement/virtualEndpoint/servicePlans", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/servicePlans", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/snapshots", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSnapshot", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/snapshots", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSnapshot", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "Uri": "/deviceManagement/virtualEndpoint/supportedRegions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointSupportedRegion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/supportedRegions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -356864,19 +372929,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementWindowsMalwareInformation", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -356895,129 +372963,137 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "New-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "Uri": "/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceRegisteredUserByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/usageRights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/usageRights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/directory/administrativeUnits", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDirectoryAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -357060,21 +373136,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "New-MgBetaDirectoryAdministrativeUnitMember", + "OutputType": "IMicrosoftGraphDirectoryObject" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDirectoryAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -357117,585 +373194,658 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "New-MgBetaDirectoryAdministrativeUnitMemberByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directory/attributeSets", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeSet" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "Uri": "/directory/customSecurityAttributeDefinitions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAllowedValue" }, { - "Uri": "/directory/deviceLocalCredentials", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/externalUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUserProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "Uri": "/directory/featureRolloutPolicies", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/federationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/federationConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/directory/impactedResources", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/inboundSharedUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryInboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/inboundSharedUserProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "Uri": "/directoryObjects", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/onPremisesSynchronization", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "Uri": "/directory/outboundSharedUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryOutboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryOutboundSharedUserProfileTenant", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/pendingExternalUserProfiles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryPendingExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPendingExternalUserProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "Uri": "/directory/recommendations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRecommendation", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directoryRoles", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-beta", + "Uri": "/directoryRoles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRoleMemberByRef", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directoryRoleTemplates", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "Uri": "/settings", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectorySetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-settings?view=graph-rest-beta", + "Uri": "/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-settings?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "Uri": "/directorySettingTemplates", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectorySettingTemplate", + "ApiReferenceLink": null, + "Uri": "/directorySettingTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "Uri": "/directory/sharedEmailDomains", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectorySharedEmailDomain", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "Uri": "/directory/subscriptions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/domains", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-beta", + "Uri": "/domains", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/domains/{domain-id}/federationConfiguration", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDomainSharedEmailDomainInvitation", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/drives", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDrive", + "ApiReferenceLink": null, + "Uri": "/drives", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDriveItemChild", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -357722,21 +373872,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "New-MgBetaDriveItemChild", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createLink", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -357763,117 +373914,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "New-MgBetaDriveItemLink", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaDriveItemUploadSession", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -357900,387 +374058,411 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "New-MgBetaDriveItemUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/education/classes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358299,21 +374481,26 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "beta", "Variants": [ "Create", + "Create1", "CreateExpanded", + "CreateExpanded1", "CreateViaIdentity", - "CreateViaIdentityExpanded" + "CreateViaIdentity1", + "CreateViaIdentityExpanded", + "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358332,25 +374519,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentCategory", + "OutputType": "IMicrosoftGraphEducationCategory" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", "Variants": [ "Create", - "Create1", "CreateExpanded", - "CreateExpanded1", "CreateViaIdentity", - "CreateViaIdentity1", - "CreateViaIdentityExpanded", - "CreateViaIdentityExpanded1" + "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358369,21 +374553,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentCategoryByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358402,53 +374587,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentResource", + "OutputType": "IMicrosoftGraphEducationAssignmentResource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentResourceDependentResource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", - "Permissions": [], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentSettingGradingCategory", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentSettingGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358467,37 +374655,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentSettingGradingScheme", + "OutputType": "IMicrosoftGraphEducationGradingScheme" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentSubmission", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -358516,21 +374706,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentSubmissionOutcome", + "OutputType": "IMicrosoftGraphEducationOutcome" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358549,69 +374740,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassAssignmentSubmissionResource", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationClassMemberByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduRoster.ReadWrite.All", @@ -358630,243 +374825,290 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationClassMemberByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/teachers/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationClassTeacherByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -358885,389 +375127,416 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "New-MgBetaEducationMeRubric", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/schools", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationSchool", + "ApiReferenceLink": null, + "Uri": "/education/schools", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { - "Uri": "/education/schools/{educationSchool-id}/classes/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationSchoolClassByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/users/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationSchoolUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/synchronizationProfiles", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationSynchronizationProfileError", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "Uri": "/education/users", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/rubrics", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionHandler", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", + "ApiReferenceLink": null, "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.Read.All", @@ -359286,187 +375555,197 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/subjects", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaEntitlementManagementSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/external/authorizationSystems", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -359485,19 +375764,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaExternalConnection", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaExternalConnectionGroup", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/groups", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -359516,21 +375798,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaExternalConnectionGroup", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -359549,440 +375832,458 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaExternalConnectionGroupMember", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/operations", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/industryData/dataConnectors", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": null, + "Uri": "/external/industryData/dataConnectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "Uri": "/external/industryData/inboundFlows", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataInboundFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/inboundFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataInboundFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "Uri": "/external/industryData/operations", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOperation", + "ApiReferenceLink": null, + "Uri": "/external/industryData/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "Uri": "/external/industryData/referenceDefinitions", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataReferenceDefinition", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "Uri": "/external/industryData/roleGroups", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataRoleGroup", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRoleGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "Uri": "/external/industryData/sourceSystems", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataSourceSystem", + "ApiReferenceLink": null, + "Uri": "/external/industryData/sourceSystems", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "Uri": "/external/industryData/years", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaExternalIndustryDataYear", + "ApiReferenceLink": null, + "Uri": "/external/industryData/years", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "Uri": "/financials/companies/{company-id}/countriesRegions", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCountryRegion", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCountryRegion" }, { - "Uri": "/financials/companies/{company-id}/currencies", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customers", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customerPayments", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/employees", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyEmployee", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmployee" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyEmployeePicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/items", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/itemCategories", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/journals", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournal" }, { - "Uri": "/financials/companies/{company-id}/journalLines", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -359993,64 +376294,68 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournalLine" }, { - "Uri": "/financials/companies/{company-id}/paymentMethods", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/paymentTerms", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -360061,96 +376366,102 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleInvoiceCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -360161,32 +376472,34 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleOrderCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleOrderLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -360197,46 +376510,49 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/makeInvoice", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/makeInvoice", + "ApiVersion": "beta", "Variants": [ "Make", "MakeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanySaleQuoteLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -360247,109 +376563,124 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/taxAreas", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyTaxArea", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxArea" }, { - "Uri": "/financials/companies/{company-id}/taxGroups", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyTaxGroup", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxGroup" }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyUnitOfMeasure", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "Uri": "/financials/companies/{company-id}/vendors", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaFinancialCompanyVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", "Uri": "/groups", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Create", @@ -360376,83 +376707,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "New-MgBetaGroup", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/acceptedSenders/$ref", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupAcceptedSenderByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/groups/{group-id}/calendar/events", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/events", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -360471,21 +376809,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "New-MgBetaGroupConversation", + "OutputType": "IMicrosoftGraphConversation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -360504,920 +376843,967 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "New-MgBetaGroupConversationThread", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupConversationThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/drives", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemUploadSession", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/endpoints", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEndpoint", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/endpoints", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/groups/{group-id}/events", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-beta", + "Uri": "/groupLifecyclePolicies", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361426,29 +377812,41 @@ "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "Uri": "/groups/{group-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupMemberByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361475,21 +377873,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361516,21 +377915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361557,21 +377957,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361598,53 +377999,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/onenote/sections", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361671,21 +378075,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -361712,21 +378117,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaGroupOnenoteSectionPage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/owners/$ref", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -361745,168 +378151,168 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "New-MgBetaGroupOwnerByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/permissionGrants", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/rejectedSenders/$ref", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupRejectedSenderByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/settings", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/settings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361917,16 +378323,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361937,16 +378344,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361957,16 +378365,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361977,16 +378386,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -361997,16 +378407,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362017,720 +378428,765 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteRecycleBinItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBinItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362741,16 +379197,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362761,112 +379218,119 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362877,16 +379341,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362897,32 +379362,34 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362933,16 +379400,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -362953,701 +379421,755 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/team/channels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/installedApps", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/tags", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -363659,495 +380181,516 @@ }, { "Name": "Group.ReadWrite.All", - "Description": "Read and write all groups", - "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Groups", - "Command": "New-MgBetaGroupThread", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" + "Description": "Read and write all groups", + "FullDescription": "Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaGroupThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/identity/apiConnectors", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/authenticationEventsFlows", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlow", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventsFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventListeners", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "Uri": "/identity/b2cUserFlows", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CIdentityUserFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2CUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/b2xUserFlows", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1", @@ -364156,13 +380699,22 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -364181,19 +380733,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -364220,683 +380773,728 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaIdentityConditionalAccessPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/customAuthenticationExtensions", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "Uri": "/identityGovernance/accessReviews/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}/generateDownloadUri", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}/generateDownloadUri", + "ApiVersion": "beta", "Variants": [ "Generate", "GenerateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createNewVersion", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createNewVersion", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createNewVersion", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowNewVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createNewVersion", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAwFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsRequestChange", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePermissionManagementScheduledPermissionRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScheduledPermissionsRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphScheduledPermissionsRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.ReadWrite.AzureADGroup", @@ -364915,47 +381513,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.ReadWrite.AzureADGroup", @@ -364974,108 +381575,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlert" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceRoleManagementAlertOperation", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/identityGovernance/termsOfUse/agreements", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -365084,177 +381684,197 @@ "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identity/identityProviders", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/userFlows", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/userFlows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "Uri": "/identity/userFlowAttributes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/informationProtection/policy/labels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy/labels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaInvitation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-beta", "Uri": "/invitations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "User.Invite.All", @@ -365281,19 +381901,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaInvitation", + "OutputType": "IMicrosoftGraphInvitation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-beta", + "Uri": "/oauth2PermissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-beta" - }, - { - "Uri": "/oauth2PermissionGrants", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -365312,84 +381933,81 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaOauth2PermissionGrant", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "Uri": "/onPremisesPublishingProfiles", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfile", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -365400,187 +382018,209 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnector", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnector" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOrganization", + "ApiReferenceLink": null, + "Uri": "/organization", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -365599,85 +382239,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "New-MgBetaOrganizationBrandingLocalization", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "Uri": "/organization/{organization-id}/extensions", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/rooms", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/workspaces", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPlaceAsRoomListWorkspace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkspace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkspace" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -365704,19 +382347,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "New-MgBetaPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -365743,19 +382387,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "New-MgBetaPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPlannerRoster", + "ApiReferenceLink": null, + "Uri": "/planner/rosters", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/rosters", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -365774,19 +382419,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "New-MgBetaPlannerRoster", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerRoster" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPlannerRosterMember", + "ApiReferenceLink": null, "Uri": "/planner/rosters/{plannerRoster-id}/members", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -365805,21 +382453,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "New-MgBetaPlannerRosterMember", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPlannerTask", + "ApiReferenceLink": null, "Uri": "/planner/tasks", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -365846,19 +382493,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "New-MgBetaPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/activityBasedTimeoutPolicies", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -365877,19 +382525,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyActivityBasedTimeoutPolicy", + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/appManagementPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/appManagementPolicies", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -365908,33 +382557,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyAppManagementPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -365953,65 +382604,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authorizationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -366030,79 +382685,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyClaimMappingPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy/partners", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "Uri": "/policies/featureRolloutPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -366121,231 +382781,246 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/policies/mobileAppManagementPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyMobileAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/mobileDeviceManagementPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyMobileDeviceManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/roleManagementPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "Uri": "/policies/roleManagementPolicyAssignments", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "Uri": "/policies/servicePrincipalCreationPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPolicyServicePrincipalCreationPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -366364,19 +383039,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -366395,47 +383071,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaPolicyTokenLifetimePolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "Uri": "/print/connectors", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { - "Uri": "/print/operations", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintPrinter", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-beta", "Uri": "/print/printers/create", + "ApiVersion": "beta", + "Variants": [ + "Create1", + "CreateExpanded1" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Create", @@ -366462,19 +383141,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintPrinter", - "Variants": [ - "Create1", - "CreateExpanded1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -366517,37 +383199,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintPrinterJob", + "OutputType": "IMicrosoftGraphPrintJob" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintPrinterJobDocument", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintPrinterJobDocumentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -366574,147 +383258,156 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintPrinterJobDocumentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printerShares", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printerShares", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobDocumentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintPrinterShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -366733,97 +383426,103 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintPrinterTaskTrigger", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/services", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services/{printService-id}/endpoints", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "Uri": "/print/shares", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic", @@ -366858,37 +383557,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintShareJob", + "OutputType": "IMicrosoftGraphPrintJob" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintShareJobDocument", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaPrintShareJobDocumentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -366915,372 +383616,386 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "New-MgBetaPrintShareJobDocumentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/privacy/subjectRightsRequests", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/privilegedAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessResourceRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedAccessRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedApproval", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedApproval", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "Uri": "/privilegedOperationEvents", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedOperationEvent", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "Uri": "/privilegedRoles", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedRole", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makeEligible", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentEligible", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makeEligible", + "ApiVersion": "beta", "Variants": [ "Make", "MakeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makePermanent", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentPermanent", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/makePermanent", + "ApiVersion": "beta", "Variants": [ "Make", "MakeExpanded", "MakeViaIdentity", "MakeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "Uri": "/programs", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaProgram", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-create?view=graph-rest-beta", + "Uri": "/programs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-create?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgram" }, { - "Uri": "/programControls", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaProgramControl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-create?view=graph-rest-beta", + "Uri": "/programControls", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -367293,173 +384008,193 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-create?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControl" }, { - "Uri": "/programControlTypes", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaProgramControlType", + "ApiReferenceLink": null, + "Uri": "/programControlTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControlType" }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "Uri": "/reports/partners/billing/manifests", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/operations", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/identityProtection/riskDetections", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskyServicePrincipals", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "Uri": "/identityProtection/riskyUsers", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementCloudPcRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -367478,35 +384213,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaRoleManagementCloudPcRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementCloudPcRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -367549,65 +384286,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaRoleManagementCloudPcRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -367626,35 +384367,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaRoleManagementDeviceManagementRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -367697,137 +384440,146 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "New-MgBetaRoleManagementDeviceManagementRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/resourceNamespaces", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/directory/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", @@ -367862,19 +384614,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/directory/roleDefinitions", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -367893,63 +384646,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", @@ -367968,301 +384725,320 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseApp", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -368281,279 +385057,298 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/customAppScopes", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeCustomAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/customAppScopes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAppScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/exchange/roleAssignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/roleDefinitions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaRoleManagementExchangeTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-beta", "Uri": "/schemaExtensions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -368572,19 +385367,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.SchemaExtensions", - "Command": "New-MgBetaSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-beta" - }, - { - "Uri": "/search/acronyms", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -368603,19 +385399,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -368634,19 +385431,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaSearchBookmark", + "OutputType": "IMicrosoftGraphSearchBookmark" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/search/qnas", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -368665,251 +385463,268 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "New-MgBetaSearchQna", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { - "Uri": "/security/securityActions", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAction", + "ApiReferenceLink": null, + "Uri": "/security/securityActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAction" }, { - "Uri": "/security/alerts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAlert" }, { - "Uri": "/security/alerts_v2", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/attackSimulation/simulations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulation" }, { - "Uri": "/security/attackSimulation/simulationAutomations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/attackSimulation/endUserNotifications", - "Permissions": [], "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/landingPages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/loginPages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/operations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/payloads", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPayload", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/trainings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTraining", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainingCampaigns", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTrainingCampaign", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingCampaign", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityAuditLogQuery", + "ApiReferenceLink": null, "Uri": "/security/auditLog/queries", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "AuditLogsQuery-Entra.Read.All", @@ -368968,35 +385783,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityAuditLogQuery", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogQuery", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityAuditLogQueryRecord", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369015,19 +385832,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCase", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369046,21 +385866,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369079,21 +385900,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "OutputType": "IMicrosoftGraphSecuritySiteSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369112,21 +385934,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369145,21 +385968,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "OutputType": "IMicrosoftGraphSecurityUserSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369178,21 +386002,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369211,21 +386036,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "OutputType": "IMicrosoftGraphSecuritySiteSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369244,21 +386070,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "OutputType": "IMicrosoftGraphSecurityUserSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369277,37 +386104,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", - "Permissions": [], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseOperation", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369326,37 +386155,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files", - "Permissions": [], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369375,21 +386206,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369408,37 +386240,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", - "Permissions": [], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -369457,603 +386291,643 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cloudAppSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityCloudAppSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "Uri": "/security/collaboration/analyzedEmails", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": null, + "Uri": "/security/collaboration/analyzedEmails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "Uri": "/security/domainSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityDomainSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "Uri": "/security/fileSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityFileSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "Uri": "/security/hostSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityHostSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "Uri": "/security/identities/healthIssues", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityIdentityHealthIssue", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHealthIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "Uri": "/security/incidents", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/security/ipSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityIPSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "Uri": "/security/labels/authorities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/categories", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/citations", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/departments", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/filePlanReferences", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/providerTenantSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityProviderTenantSetting", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "Uri": "/security/rules/detectionRules", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityRuleDetectionRule", + "ApiReferenceLink": null, + "Uri": "/security/rules/detectionRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDetectionRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "Uri": "/security/secureScores", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScore" }, { - "Uri": "/security/secureScoreControlProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "Uri": "/security/subjectRightsRequests", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/security/threatIntelligence/articles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articleIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/hosts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostComponents", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostCookies", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostPairs", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPorts", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostTrackers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/intelProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/sslCertificates", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/subdomains", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/vulnerabilities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityThreatSubmissionEmailThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/emailThreats", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.ReadWrite", @@ -370072,33 +386946,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityThreatSubmissionEmailThreat", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityThreatSubmissionFileThreat", + "ApiReferenceLink": null, "Uri": "/security/threatSubmission/fileThreats", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.ReadWrite", @@ -370117,19 +386993,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityThreatSubmissionFileThreat", + "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSecurityThreatSubmissionUrlThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/urlThreats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/threatSubmission/urlThreats", + "Module": "Beta.Security", "Permissions": [ { "Name": "ThreatSubmission.ReadWrite", @@ -370148,149 +387025,159 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "New-MgBetaSecurityThreatSubmissionUrlThreat", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "Uri": "/security/tiIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityTiIndicator", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { - "Uri": "/security/triggers/retentionEvents", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "Uri": "/security/triggerTypes/retentionEventTypes", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/security/userSecurityProfiles", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSecurityUserSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/messages", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-beta", "Uri": "/servicePrincipals", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -370317,19 +387204,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipal", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -370356,21 +387246,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalAppRoleAssignedTo", + "OutputType": "IMicrosoftGraphAppRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "Module": "Beta.Applications", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -370397,21 +387288,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalAppRoleAssignment", + "OutputType": "IMicrosoftGraphAppRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalClaimMappingPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -370454,53 +387346,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalClaimMappingPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalDelegatedPermissionClassification", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalEndpoint", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -370543,37 +387438,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalLicenseDetail", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -370608,21 +387505,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalOwnerByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-createpasswordsinglesignoncredentials?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/createPasswordSingleSignOnCredentials", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/createPasswordSingleSignOnCredentials", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -370649,51 +387547,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalPasswordSingleSignOnCredential", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-createpasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPasswordSingleSignOnCredentialSet" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -370712,21 +387613,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaServicePrincipalSynchronizationJobOnDemand", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "beta", + "Variants": [ + "Provision", + "ProvisionExpanded", + "ProvisionViaIdentity", + "ProvisionViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -370745,152 +387647,151 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "New-MgBetaServicePrincipalSynchronizationJobOnDemand", - "Variants": [ - "Provision", - "ProvisionExpanded", - "ProvisionViaIdentity", - "ProvisionViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -370901,16 +387802,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -370921,91 +387823,107 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371024,21 +387942,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371057,21 +387976,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371090,40 +388010,32 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteContentTypeColumn", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371134,16 +388046,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371154,16 +388067,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371174,16 +388088,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371194,16 +388109,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371214,16 +388130,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -371234,13 +388151,24 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371259,37 +388187,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteList", + "OutputType": "IMicrosoftGraphList" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListActivity", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371308,37 +388238,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListContentType", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -371357,69 +388289,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListContentTypeColumn", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -371454,21 +388390,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListItemDocumentSetVersion", + "OutputType": "IMicrosoftGraphDocumentSetVersion" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Files.ReadWrite", @@ -371495,69 +388432,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "New-MgBetaSiteListItemLink", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371584,21 +388525,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371625,21 +388567,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371666,21 +388609,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371707,53 +388651,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371780,21 +388727,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -371821,184 +388769,185 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaSiteOnenoteSectionPage", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/operations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/pages", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372009,16 +388958,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372029,112 +388979,119 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372145,16 +389102,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372165,32 +389123,34 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372201,16 +389161,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -372221,201 +389182,222 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/subscribedSkus", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-beta", + "Uri": "/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-beta", "Uri": "/teams", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Team.Create", @@ -372450,19 +389432,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeam", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.Create.Group", @@ -372505,51 +389490,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannel", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", - "Permissions": [], - "Module": "Beta.Teams", + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "beta", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -372576,37 +389564,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelMessage", + "OutputType": "IMicrosoftGraphChatMessage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelMessageHostedContent", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -372633,53 +389623,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelMessageReply", + "OutputType": "IMicrosoftGraphChatMessage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelMessageReplyHostedContent", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelSharedWithTeam", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.Create.Group", @@ -372754,21 +389747,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamChannelTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -372859,211 +389853,224 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamInstalledApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/teams/{team-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", + "ApiVersion": "beta", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/schedule/dayNotes", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/dayNotes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373082,21 +390089,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleOfferShiftRequest", + "OutputType": "IMicrosoftGraphOfferShiftRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373123,21 +390131,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleOpenShift", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373156,21 +390165,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleOpenShiftChangeRequest", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373189,21 +390199,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleSchedulingGroup", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/shifts", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373222,37 +390233,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleShift", + "OutputType": "IMicrosoftGraphShift" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleShiftRoleDefinition", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373271,37 +390284,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleSwapShiftChangeRequest", + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeCards", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/teams/{team-id}/schedule/timeCards", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleTimeCard", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timesOff", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373320,21 +390335,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleTimeOff", + "OutputType": "IMicrosoftGraphTimeOff" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -373353,37 +390369,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleTimeOffReason", + "OutputType": "IMicrosoftGraphTimeOffReason" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/teams/{team-id}/schedule/timeOffRequests", - "Permissions": [], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamScheduleTimeOffRequest", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaTeamTag", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -373402,965 +390420,1029 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaTeamTag", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/teamwork/deletedChats", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/provisionEmail", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "beta", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/devices", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDevice", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkDeviceOperation", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "Uri": "/teamwork/teamTemplates", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "Uri": "/teamwork/workforceIntegrations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "Uri": "/tenantRelationships/managedTenants/tenants", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/auditEvents", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantAuditEvent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/auditEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcConnections", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcConnection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcConnections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcDevices", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcDevice", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCloudPcOverview", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantCustomizedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDetailedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/tenantGroups", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantGroup", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "Uri": "/tenantRelationships/managedTenants/managementActions", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "Uri": "/tenantRelationships/managedTenants/managementIntents", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementIntent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplates", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "Uri": "/tenantRelationships/managedTenants/myRoles", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantMyRole", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/myRoles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsMyRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "Uri": "/tenantRelationships/managedTenants/tenantTags", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantTags", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "Uri": "/trustFramework/keySets", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTrustFrameworkKeySet", + "ApiReferenceLink": null, + "Uri": "/trustFramework/keySets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/generateKey", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTrustFrameworkKeySetKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-generatekey?view=graph-rest-beta", + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}/generateKey", + "ApiVersion": "beta", "Variants": [ "Generate", "GenerateExpanded", "GenerateViaIdentity", "GenerateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKey", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/trustframeworkkeyset-generatekey?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKey" }, { - "Uri": "/trustFramework/policies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaTrustFrameworkPolicy", + "ApiReferenceLink": null, + "Uri": "/trustFramework/policies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-beta", "Uri": "/users", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -374411,83 +391493,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUser", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-post-users?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/analytics/activityStatistics", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserActivityStatistics", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "Uri": "/users/{user-id}/appRoleAssignments", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -374506,53 +391595,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaUserAuthenticationMethod", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaUserAuthenticationOperation", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -374571,104 +391663,100 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "New-MgBetaUserAuthenticationPhoneMethod", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "Uri": "/users/{user-id}/calendars", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}/events", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/calendarGroups", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCalendarGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -374679,1099 +391767,1178 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/chats", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChat" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/createSnapshot", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserCloudPcSnapshot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/createSnapshot", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/events", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDefaultCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/events", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/devices", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/createEnrollmentNotificationConfiguration", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceEnrollmentConfigurationEnrollmentNotificationConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/createEnrollmentNotificationConfiguration", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceRegisteredUserByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/users/{user-id}/drives", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemUploadSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitem-createlink?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/events", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserEventAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", "Uri": "/users/{user-id}/events/{event-id}/attachments/createUploadSession", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -375790,913 +392957,970 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "New-MgBetaUserEventAttachmentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventInstanceAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy/labels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/users/{user-id}/insights/shared", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInsightShared", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedInsight" }, { - "Uri": "/users/{user-id}/insights/trending", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInsightTrending", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrending", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrending" }, { - "Uri": "/users/{user-id}/insights/used", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserInsightUsed", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsedInsight" }, { - "Uri": "/users/{user-id}/mailFolders", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createForward", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReply", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReplyAll", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/managedDevices", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/createDeviceLogCollectionRequest", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceLogCollectionResponseDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceWindowsDefenderUpdateSignature", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/messages", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", "Uri": "/users/{user-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -376715,179 +393939,190 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "New-MgBetaUserMessageAttachmentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/createForward", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/mentions", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/mentions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMention", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMention" }, { - "Uri": "/users/{user-id}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/createReply", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "beta", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mobileAppIntentAndStates", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMobileAppIntentAndState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppIntentAndStates", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", + "ApiVersion": "beta", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { - "Uri": "/users/{user-id}/notifications", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserNotification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotification" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -376914,21 +394149,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -376955,21 +394191,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -376996,21 +394233,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -377037,53 +394275,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/users/{user-id}/onenote/sections", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/users/{user-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -377110,21 +394351,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.Create", @@ -377151,21 +394393,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "New-MgBetaUserOnenoteSectionPage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onlineMeetings", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -377184,40 +394427,32 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.CloudCommunications", - "Command": "New-MgBetaUserOnlineMeeting", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "Create", "Create1", @@ -377228,45 +394463,58 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -377293,245 +394541,260 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "New-MgBetaUserOnlineMeetingRegistrationRegistrant", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/outlook/masterCategories", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/outlook/taskFolders", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskFolderTaskAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/outlook/taskGroups", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileAccount", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/profile/account", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377550,21 +394813,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileAccount", + "OutputType": "IMicrosoftGraphUserAccountInformation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileAddress", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/addresses", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377583,21 +394847,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileAddress", + "OutputType": "IMicrosoftGraphItemAddress" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileAnniversary", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/anniversaries", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377616,21 +394881,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileAnniversary", + "OutputType": "IMicrosoftGraphPersonAnnualEvent" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileAward", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/awards", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377649,21 +394915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileAward", + "OutputType": "IMicrosoftGraphPersonAward" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileCertification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/certifications", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377682,21 +394949,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileCertification", + "OutputType": "IMicrosoftGraphPersonCertification" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileEducationalActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/educationalActivities", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377715,21 +394983,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileEducationalActivity", + "OutputType": "IMicrosoftGraphEducationalActivity" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileEmail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/emails", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377748,21 +395017,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileEmail", + "OutputType": "IMicrosoftGraphItemEmail" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileInterest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/interests", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377781,21 +395051,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileInterest", + "OutputType": "IMicrosoftGraphPersonInterest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileLanguage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/languages", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377814,21 +395085,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileLanguage", + "OutputType": "IMicrosoftGraphLanguageProficiency" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/names", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -377871,21 +395143,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileName", + "OutputType": "IMicrosoftGraphPersonName" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileNote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/notes", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377904,21 +395177,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileNote", + "OutputType": "IMicrosoftGraphPersonAnnotation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfilePatent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/patents", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377937,21 +395211,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfilePatent", + "OutputType": "IMicrosoftGraphItemPatent" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfilePhone", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/phones", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -377970,21 +395245,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfilePhone", + "OutputType": "IMicrosoftGraphItemPhone" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfilePosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/positions", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378003,21 +395279,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfilePosition", + "OutputType": "IMicrosoftGraphWorkPosition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileProject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/projects", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378036,21 +395313,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileProject", + "OutputType": "IMicrosoftGraphProjectParticipation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfilePublication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/publications", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378069,21 +395347,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfilePublication", + "OutputType": "IMicrosoftGraphItemPublication" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileSkill", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/skills", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378102,21 +395381,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileSkill", + "OutputType": "IMicrosoftGraphSkillProficiency" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileWebAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378135,21 +395415,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileWebAccount", + "OutputType": "IMicrosoftGraphWebAccount" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserProfileWebsite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -378168,117 +395449,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "New-MgBetaUserProfileWebsite", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/users/{user-id}/settings/storage/quota/services", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserSettingStorageQuotaService", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota/services", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "Uri": "/users/{user-id}/settings/windows", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "beta", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForUser", @@ -378377,21 +395665,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "New-MgBetaUserTeamworkInstalledApp", + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378410,37 +395699,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListExtension", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378459,21 +395750,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378492,21 +395784,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListTaskAttachment", + "OutputType": "IMicrosoftGraphAttachmentBase" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTaskAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-beta", + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/createUploadSession", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/createUploadSession", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378525,21 +395818,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "New-MgBetaUserTodoListTaskAttachmentUploadSession", + "OutputType": "IMicrosoftGraphUploadSession" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378558,37 +395852,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", - "Permissions": [], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListTaskExtension", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBetaUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -378607,515 +395903,548 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "New-MgBetaUserTodoListTaskLinkedResource", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { - "Uri": "/solutions/virtualEvents/events", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/townhalls", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventTownhall", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/admin/windows/updates/deployments", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuDeployment", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesDeployment", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuDeploymentAudienceApplicableContent", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesDeploymentAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuDeploymentAudienceApplicableContentMatchedDevice", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/updatePolicies", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicy", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicyAudienceApplicableContent", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicyAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicyAudienceApplicableContentMatchedDevice", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicyAudienceExclusion", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicyAudienceMember", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuPolicyComplianceChange", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesPolicyComplianceChange", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange" }, { - "Uri": "/admin/windows/updates/products", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuProduct", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesProduct", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuProductEdition", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesProductEdition", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesEdition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesEdition" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuProductKnownIssue", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesProductKnownIssue", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuProductRevision", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesProductRevision", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision" }, { - "Uri": "/admin/windows/updates/resourceConnections", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuResourceConnection", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesResourceConnection", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection" }, { - "Uri": "/admin/windows/updates/updatableAssets", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "New-MgBetaWuUpdatableAsset", + "Method": "POST", "Command": "New-MgBetaWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets", + "ApiVersion": "beta", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBookingBusiness", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingBusiness" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -379150,37 +396479,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "New-MgBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView", - "Permissions": [], - "Module": "Bookings", - "Command": "New-MgBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -379207,21 +396538,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "New-MgBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -379248,21 +396580,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "New-MgBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -379281,21 +396614,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "New-MgBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -379314,35 +396648,35 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "New-MgBookingBusinessStaffMember", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/bookingCurrencies", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingCurrencies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingCurrency" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-1.0", "Uri": "/chats", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.Create", @@ -379361,19 +396695,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChat", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-post?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -379464,21 +396801,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChatInstalledApp", + "OutputType": "IMicrosoftGraphTeamsAppInstallation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChatMember", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/members", + "Module": "Teams", "Permissions": [ { "Name": "ChatMember.ReadWrite", @@ -379521,21 +396859,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChatMember", + "OutputType": "IMicrosoftGraphConversationMember" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChatMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/messages", + "Module": "Teams", "Permissions": [ { "Name": "ChatMessage.Send", @@ -379570,85 +396909,90 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChatMessage", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChatMessage.Send", @@ -379675,21 +397019,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChatPinnedMessage", + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgChatTab", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/tabs", + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Create", @@ -379756,21 +397101,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgChatTab", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgCommunicationCall", + "ApiReferenceLink": null, "Uri": "/communications/calls", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCalls.Chat", @@ -379813,19 +397157,22 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "New-MgCommunicationCall", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCall", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCall" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/audioRoutingGroups", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -379844,247 +397191,263 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "New-MgCommunicationCallAudioRoutingGroup", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/participants", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationCallParticipant", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/participants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParticipant" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/onlineMeetings", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/presences", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/contacts", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgContact", + "ApiReferenceLink": null, + "Uri": "/contacts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contracts", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgContract", + "ApiReferenceLink": null, + "Uri": "/contracts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/dataPolicyOperations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { - "Uri": "/devices", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-1.0", + "Uri": "/devices", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-post-devices?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtAndroidManagedAppProtection", + "Method": "POST", "Command": "New-MgDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "New-MgDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380103,37 +397466,37 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementAndroidManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgDeviceAppMgtDefaultManagedAppProtection", + "Method": "POST", + "Command": "New-MgDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380152,19 +397515,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "New-MgDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380183,35 +397549,37 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtiOSManagedAppProtection", + "Method": "POST", "Command": "New-MgDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "New-MgDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "POST", + "Command": "New-MgDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380230,51 +397598,52 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementiOSManagedAppProtectionApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/deviceAppManagement/managedAppPolicies", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedAppPolicy", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "New-MgDeviceAppMgtManagedAppRegistration", + "Method": "POST", + "Command": "New-MgDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380293,51 +397662,56 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementManagedAppRegistration", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "New-MgDeviceAppMgtManagedAppRegistrationOperation", + "Method": "POST", + "Command": "New-MgDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380356,143 +397730,152 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { - "Uri": "/deviceAppManagement/managedAppStatuses", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedAppStatus", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedEBooks", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedEBook", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBook" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedEBookAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookAssignment" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedEBookDeviceState", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedEBookUserStateSummary", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInstallStateSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "POST", "Command": "New-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "POST", "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "POST", + "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380511,21 +397894,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "New-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "POST", + "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -380544,941 +397928,1000 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/deviceAppManagement/mobileApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppCategories", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppCategory", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppConfiguration", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "POST", "Command": "New-MgDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "POST", "Command": "New-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "New-MgDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "POST", + "Command": "New-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -381497,37 +398940,37 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementTargetedManagedAppConfigurationApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedMobileApp" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgDeviceAppMgtVppToken", + "Method": "POST", + "Command": "New-MgDeviceAppManagementVppToken", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -381546,19 +398989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementVppToken", + "OutputType": "IMicrosoftGraphVppToken" + }, + { + "CommandAlias": "New-MgDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "POST", + "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -381577,35 +399021,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" }, { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "New-MgDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "POST", "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { + "CommandAlias": "New-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "POST", + "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -381624,21 +399072,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "New-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "POST", + "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -381657,51 +399106,52 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "New-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/devices/{device-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/auditEvents", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuditEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -381720,19 +399170,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementComplianceManagementPartner", + "OutputType": "IMicrosoftGraphComplianceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementDetectedApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/detectedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/detectedApps", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -381751,19 +399202,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -381782,237 +399234,252 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementDeviceCategory", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382031,19 +399498,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "New-MgDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382062,21 +399532,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "New-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382095,47 +399564,50 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementExchangeConnector", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/iosUpdateStatuses", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -382154,109 +399626,118 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementManagedDevice", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceLogCollectionRequestDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceWindowsDefenderUpdateSignature", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -382268,28 +399749,27 @@ }, { "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applogcollectionrequest-createdownloadurl?view=graph-rest-1.0", "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}/createDownloadUrl", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.Read.All", @@ -382324,19 +399804,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "New-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequestDownloadUrl", - "Variants": [ - "Create", - "CreateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-applogcollectionrequest-createdownloadurl?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAppLogCollectionDownloadDetails" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileThreatDefenseConnectors", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382355,49 +399836,52 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "Uri": "/deviceManagement/notificationMessageTemplates", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382416,19 +399900,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -382447,19 +399932,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementRemoteAssistancePartner", + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementResourceOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceOperations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/resourceOperations", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -382478,19 +399964,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementResourceOperation", + "OutputType": "IMicrosoftGraphResourceOperation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleAssignments", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -382509,19 +399996,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -382540,19 +400028,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleDefinition" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -382571,95 +400062,99 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "New-MgDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "Uri": "/deviceManagement/termsAndConditions", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "Uri": "/deviceManagement/troubleshootingEvents", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382678,19 +400173,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382709,19 +400205,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382740,19 +400237,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382771,19 +400269,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382802,19 +400301,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382833,19 +400333,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382864,19 +400365,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382895,33 +400397,35 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBaselines", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -382940,80 +400444,52 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementUserExperienceAnalyticBaseline", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383032,19 +400508,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383063,19 +400540,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383094,19 +400572,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383125,19 +400604,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383156,19 +400636,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383187,19 +400668,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383218,19 +400700,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383249,19 +400732,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383280,21 +400764,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -383313,163 +400798,206 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -383488,19 +401016,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementWindowsMalwareInformation", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -383519,83 +401050,88 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "New-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "Uri": "/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceRegisteredOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDeviceRegisteredUserByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDirectoryAdministrativeUnitMember", + "ApiReferenceLink": null, "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -383638,21 +401174,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "New-MgDirectoryAdministrativeUnitMember", + "OutputType": "IMicrosoftGraphDirectoryObject" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDirectoryAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "AdministrativeUnit.ReadWrite.All", @@ -383695,335 +401232,357 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "New-MgDirectoryAdministrativeUnitMemberByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directory/attributeSets", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeSet" }, { - "Uri": "/directory/customSecurityAttributeDefinitions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAllowedValue" }, { - "Uri": "/directory/deviceLocalCredentials", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/federationConfigurations", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/federationConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/directoryObjects", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/onPremisesSynchronization", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "Uri": "/directoryRoles", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-1.0", + "Uri": "/directoryRoles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryrole-post-directoryroles?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryRoleMemberByRef", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directoryRoleTemplates", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "Uri": "/directory/subscriptions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/domains", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-1.0", + "Uri": "/domains", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-post-domains?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/domains/{domain-id}/federationConfiguration", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/drives", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDrive", + "ApiReferenceLink": null, + "Uri": "/drives", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveBundle", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDriveItemChild", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -384050,21 +401609,22 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "New-MgDriveItemChild", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createLink", + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -384091,117 +401651,124 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "New-MgDriveItemLink", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemListItemLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgDriveItemUploadSession", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -384228,387 +401795,411 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "New-MgDriveItemUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListItemLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootListItemLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/education/classes", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -384627,21 +402218,26 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", + "Create1", "CreateExpanded", + "CreateExpanded1", "CreateViaIdentity", - "CreateViaIdentityExpanded" + "CreateViaIdentity1", + "CreateViaIdentityExpanded", + "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -384660,25 +402256,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentCategory", + "OutputType": "IMicrosoftGraphEducationCategory" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", - "Create1", "CreateExpanded", - "CreateExpanded1", "CreateViaIdentity", - "CreateViaIdentity1", - "CreateViaIdentityExpanded", - "CreateViaIdentityExpanded1" + "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -384697,21 +402290,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentCategoryByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -384730,53 +402324,56 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentResource", + "OutputType": "IMicrosoftGraphEducationAssignmentResource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories", - "Permissions": [], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentSettingGradingCategory", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentSubmission", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -384795,21 +402392,22 @@ "IsLeastPrivilege": true } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentSubmissionOutcome", + "OutputType": "IMicrosoftGraphEducationOutcome" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -384828,37 +402426,39 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentSubmissionResource", + "OutputType": "IMicrosoftGraphEducationSubmissionResource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Education", - "Command": "New-MgEducationClassAssignmentSubmissionSubmittedResource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationClassMemberByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/members/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/members/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduRoster.ReadWrite.All", @@ -384877,195 +402477,239 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationClassMemberByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/classes/{educationClass-id}/teachers/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationClassTeacherByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/teachers/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -385084,438 +402728,458 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "New-MgEducationMeRubric", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/schools", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationSchool", + "ApiReferenceLink": null, + "Uri": "/education/schools", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { - "Uri": "/education/schools/{educationSchool-id}/classes/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationSchoolClassByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/users/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationSchoolUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/users/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/rubrics", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/assignments", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignment" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentPolicyQuestion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageQuestion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385530,16 +403194,17 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385550,32 +403215,34 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385590,16 +403257,17 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385610,232 +403278,247 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385850,16 +403533,17 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385870,32 +403554,34 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385910,16 +403596,17 @@ "CreateViaIdentityExpanded1", "CreateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -385930,267 +403617,292 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRequestResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgEntitlementManagementResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -386209,19 +403921,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgExternalConnection", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgExternalConnectionGroup", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/groups", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -386240,21 +403955,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgExternalConnectionGroup", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members", + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -386273,69 +403989,71 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgExternalConnectionGroupMember", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/operations", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0", "Uri": "/groups", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Create", @@ -386362,83 +404080,90 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "New-MgGroup", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-post-groups?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/acceptedSenders/$ref", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupAcceptedSenderByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/acceptedSenders/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/groups/{group-id}/calendar/events", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/events", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -386457,21 +404182,22 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "New-MgGroupConversation", + "OutputType": "IMicrosoftGraphConversation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -386490,776 +404216,814 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "New-MgGroupConversationThread", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveBundle", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemListItemLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemUploadSession", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListItemLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootListItemLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/events", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-1.0", + "Uri": "/groupLifecyclePolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387268,29 +405032,41 @@ "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-post-grouplifecyclepolicies?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "Uri": "/groups/{group-id}/members/$ref", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupMemberByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387317,21 +405093,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387358,21 +405135,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387399,21 +405177,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387440,53 +405219,56 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/onenote/sections", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgGroupOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgGroupOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387513,21 +405295,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -387554,21 +405337,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgGroupOnenoteSectionPage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/owners/$ref", + "Module": "Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -387587,56 +405371,49 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "New-MgGroupOwnerByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/permissionGrants", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/rejectedSenders/$ref", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupRejectedSenderByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/rejectedSenders/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/settings", - "Permissions": [], "Module": "Groups", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387645,126 +405422,134 @@ "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupSetting" }, { - "Uri": "/groupSettingTemplates", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSettingTemplateGroupSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/groupSettingTemplates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSettingTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387775,16 +405560,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387795,16 +405581,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387815,16 +405602,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387835,16 +405623,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387855,16 +405644,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387875,16 +405665,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -387895,560 +405686,595 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListItemLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388459,16 +406285,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388479,16 +406306,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388507,16 +406335,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388535,16 +406364,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388555,16 +406385,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388575,16 +406406,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388595,16 +406427,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388615,16 +406448,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388635,16 +406469,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388655,16 +406490,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388683,16 +406519,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388711,16 +406548,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388731,16 +406569,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388759,16 +406598,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388787,16 +406627,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388807,16 +406648,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388827,16 +406669,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388847,16 +406690,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388867,16 +406711,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388887,16 +406732,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388907,16 +406753,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388927,16 +406774,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388947,16 +406795,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388967,16 +406816,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -388987,493 +406837,534 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/team/channels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/installedApps", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/groups/{group-id}/team/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/operations", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/team/schedule/timeOffRequests", - "Permissions": [], + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], "Module": "Teams", - "Command": "New-MgGroupTeamScheduleTimeOffRequest", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgGroupTeamTag", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgGroupTeamTagMember", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgGroupThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/threads", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -389492,253 +407383,267 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "New-MgGroupThread", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/authenticationEventListeners", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "Uri": "/identity/b2xUserFlows", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/authenticationStrength/policies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "v1.0", + "Variants": [ + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -389757,19 +407662,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", - "Variants": [ - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -389788,19 +407694,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -389827,415 +407734,442 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgIdentityConditionalAccessPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/customAuthenticationExtensions", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "Uri": "/identityGovernance/accessReviews/definitions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}/generateDownloadUri", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAccessReviewHistoryDefinitionInstanceDownloadUri", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}/generateDownloadUri", + "ApiVersion": "v1.0", "Variants": [ "Generate", "GenerateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewhistoryinstance-generatedownloaduri?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createNewVersion", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowNewVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/createNewVersion", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createNewVersion", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowNewVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createNewVersion", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-createnewversion?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedAssignmentSchedule.ReadWrite.AzureADGroup", @@ -390254,47 +408188,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "PrivilegedEligibilitySchedule.ReadWrite.AzureADGroup", @@ -390313,36 +408250,30 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "Uri": "/identityGovernance/termsOfUse/agreements", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -390351,135 +408282,152 @@ "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identity/identityProviders", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/userFlowAttributes", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/informationProtection/threatAssessmentRequests", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgInvitation", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-1.0", "Uri": "/invitations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "User.Invite.All", @@ -390506,19 +408454,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgInvitation", + "OutputType": "IMicrosoftGraphInvitation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-1.0", + "Uri": "/oauth2PermissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/invitation-post?view=graph-rest-1.0" - }, - { - "Uri": "/oauth2PermissionGrants", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -390537,33 +408486,37 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgOauth2PermissionGrant", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-post?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "Uri": "/organization", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgOrganization", + "ApiReferenceLink": null, + "Uri": "/organization", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrganization" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgOrganizationBrandingLocalization", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -390582,69 +408535,71 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "New-MgOrganizationBrandingLocalization", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCertificateBasedAuthConfiguration" }, { - "Uri": "/organization/{organization-id}/extensions", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/rooms", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -390671,19 +408626,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "New-MgPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -390710,19 +408666,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "New-MgPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -390749,19 +408706,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "New-MgPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/activityBasedTimeoutPolicies", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -390780,19 +408738,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyActivityBasedTimeoutPolicy", + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/appManagementPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/appManagementPolicies", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -390811,33 +408770,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyAppManagementPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -390856,35 +408817,37 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -390903,79 +408866,84 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyClaimMappingPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy/partners", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "Uri": "/policies/featureRolloutPolicies", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicyApplyTo", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -390994,125 +408962,133 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { - "Uri": "/policies/permissionGrantPolicies", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/roleManagementPolicies", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "Uri": "/policies/roleManagementPolicyAssignments", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -391131,19 +409107,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -391162,47 +409139,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgPolicyTokenLifetimePolicy", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, - { - "Uri": "/print/connectors", - "Permissions": [], - "Module": "Devices.CloudPrint", + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { - "Uri": "/print/operations", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinter", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-1.0", "Uri": "/print/printers/create", + "ApiVersion": "v1.0", + "Variants": [ + "Create1", + "CreateExpanded1" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.Create", @@ -391229,19 +409209,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinter", - "Variants": [ - "Create1", - "CreateExpanded1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-create?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinterJob", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -391284,37 +409267,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinterJob", + "OutputType": "IMicrosoftGraphPrintJob" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinterJobDocument", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinterJobDocumentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0", + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -391341,37 +409326,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinterJobDocumentUploadSession", + "OutputType": "IMicrosoftGraphUploadSession" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinterJobTask", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintPrinterTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/taskTriggers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/taskTriggers", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -391390,97 +409377,103 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintPrinterTaskTrigger", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/services", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services/{printService-id}/endpoints", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "Uri": "/print/shares", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic", @@ -391515,37 +409508,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintShareJob", + "OutputType": "IMicrosoftGraphPrintJob" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents", - "Permissions": [], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintShareJobDocument", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgPrintShareJobDocumentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/createUploadSession", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -391572,285 +409567,302 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "New-MgPrintShareJobDocumentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printdocument-createuploadsession?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/privacy/subjectRightsRequests", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "Uri": "/reports/partners/billing/manifests", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/operations", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/identityProtection/riskDetections", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskyServicePrincipals", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "Uri": "/identityProtection/riskyUsers", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { - "Uri": "/roleManagement/directory/resourceNamespaces", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/directory/roleAssignments", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", @@ -391885,19 +409897,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/directory/roleDefinitions", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -391916,63 +409929,67 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", @@ -391991,49 +410008,52 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -392052,133 +410072,142 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "New-MgRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-1.0", "Uri": "/schemaExtensions", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -392197,19 +410226,20 @@ "IsLeastPrivilege": false } ], - "Module": "SchemaExtensions", - "Command": "New-MgSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-post-schemaextensions?view=graph-rest-1.0" - }, - { - "Uri": "/search/acronyms", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -392228,19 +410258,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -392259,19 +410290,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgSearchBookmark", + "OutputType": "IMicrosoftGraphSearchBookmark" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/search/qnas", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -392290,223 +410322,238 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "New-MgSearchQna", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchQna" }, { - "Uri": "/security/alerts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAlert" }, { - "Uri": "/security/alerts_v2", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/attackSimulation/simulations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulation" }, { - "Uri": "/security/attackSimulation/simulationAutomations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/endUserNotifications", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/landingPages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/loginPages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/operations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/payloads", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPayload", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/trainings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTraining", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392525,19 +410572,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392556,21 +410606,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseCustodian", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392589,21 +410640,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "OutputType": "IMicrosoftGraphSecuritySiteSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392622,21 +410674,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392655,21 +410708,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "OutputType": "IMicrosoftGraphSecurityUserSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392688,37 +410742,39 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations", - "Permissions": [], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseOperation", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392737,21 +410793,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSet", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392770,21 +410827,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392803,37 +410861,39 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources", - "Permissions": [], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -392852,565 +410912,602 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "New-MgSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/incidents", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/labels/authorities", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/categories", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/citations", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/departments", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/filePlanReferences", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/secureScores", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScore" }, { - "Uri": "/security/secureScoreControlProfiles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "Uri": "/security/subjectRightsRequests", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/security/threatIntelligence/articles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articleIndicators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/hosts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostComponents", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostCookies", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostPairs", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPorts", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostTrackers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/intelProfiles", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/sslCertificates", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/subdomains", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/vulnerabilities", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/triggers/retentionEvents", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "Uri": "/security/triggerTypes/retentionEventTypes", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/messages", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0", "Uri": "/servicePrincipals", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -393437,19 +411534,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipal", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-post-serviceprincipals?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -393476,21 +411576,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalAppRoleAssignedTo", + "OutputType": "IMicrosoftGraphAppRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments", + "Module": "Applications", "Permissions": [ { "Name": "AppRoleAssignment.ReadWrite.All", @@ -393517,21 +411618,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalAppRoleAssignment", + "OutputType": "IMicrosoftGraphAppRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -393574,53 +411676,56 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalClaimMappingPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications", - "Permissions": [], - "Module": "Applications", - "Command": "New-MgServicePrincipalDelegatedPermissionClassification", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints", - "Permissions": [], - "Module": "Applications", - "Command": "New-MgServicePrincipalEndpoint", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -393663,21 +411768,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalOwnerByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -393712,51 +411818,54 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalOwnerByRef", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -393775,21 +411884,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgServicePrincipalSynchronizationJobOnDemand", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/provisionOnDemand", + "ApiVersion": "v1.0", + "Variants": [ + "Provision", + "ProvisionExpanded", + "ProvisionViaIdentity", + "ProvisionViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -393808,152 +411918,151 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "New-MgServicePrincipalSynchronizationJobOnDemand", - "Variants": [ - "Provision", - "ProvisionExpanded", - "ProvisionViaIdentity", - "ProvisionViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStringKeyStringValuePair", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-provisionondemand?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphStringKeyStringValuePair" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -393964,16 +412073,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -393984,91 +412094,107 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394087,21 +412213,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394120,21 +412247,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394153,40 +412281,32 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteContentTypeColumn", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394197,16 +412317,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394217,16 +412338,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/lists", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394237,16 +412359,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394257,16 +412380,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394277,16 +412401,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathPermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394297,16 +412422,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStores", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -394317,13 +412443,24 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteList", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394342,21 +412479,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteList", + "OutputType": "IMicrosoftGraphList" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/columns", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394375,37 +412513,39 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes", - "Permissions": [], - "Module": "Sites", - "Command": "New-MgSiteListContentType", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -394424,53 +412564,56 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteListContentTypeColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Sites", - "Command": "New-MgSiteListContentTypeColumnLink", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items", - "Permissions": [], - "Module": "Sites", - "Command": "New-MgSiteListItem", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions", + "Module": "Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -394505,21 +412648,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteListItemDocumentSetVersion", + "OutputType": "IMicrosoftGraphDocumentSetVersion" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteListItemLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createLink", + "Module": "Sites", "Permissions": [ { "Name": "Files.ReadWrite", @@ -394546,69 +412690,73 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "New-MgSiteListItemLink", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394635,21 +412783,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394676,21 +412825,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394717,21 +412867,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394758,53 +412909,56 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/sites/{site-id}/onenote/sections", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgSiteOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgSiteOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394831,21 +412985,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -394872,168 +413027,168 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgSiteOnenoteSectionPage", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/operations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/pages", - "Permissions": [], "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/permissions", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/termStores", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStores", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/termStore/groups", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395044,16 +413199,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395064,16 +413220,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395092,16 +413249,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395120,16 +413278,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395140,16 +413299,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395160,16 +413320,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395180,16 +413341,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395200,16 +413362,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395220,16 +413383,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395240,16 +413404,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395268,16 +413433,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395296,16 +413462,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395316,16 +413483,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395344,16 +413512,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395372,16 +413541,17 @@ "CreateViaIdentityExpanded2", "CreateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395392,16 +413562,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395412,16 +413583,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395432,16 +413604,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395452,16 +413625,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395472,16 +413646,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395492,16 +413667,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395512,16 +413688,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395532,16 +413709,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395552,16 +413730,17 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -395572,41 +413751,52 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/subscribedSkus", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-1.0", + "Uri": "/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-post-subscriptions?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-1.0", "Uri": "/teams", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Team.Create", @@ -395641,19 +413831,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeam", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-post?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphTeam" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.Create.Group", @@ -395696,51 +413889,54 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamChannel", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "v1.0", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelMessage", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -395767,37 +413963,39 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamChannelMessage", + "OutputType": "IMicrosoftGraphChatMessage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgTeamChannelMessageHostedContent", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "Module": "Teams", "Permissions": [ { "Name": "ChannelMessage.Send", @@ -395824,53 +414022,56 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamChannelMessageReply", + "OutputType": "IMicrosoftGraphChatMessage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgTeamChannelMessageReplyHostedContent", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgTeamChannelSharedWithTeam", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/tabs", + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.Create.Group", @@ -395945,21 +414146,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamChannelTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps", + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -396050,195 +414252,207 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamInstalledApp", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/teams/{team-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/operations", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/provisionEmail", + "ApiVersion": "v1.0", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/offerShiftRequests", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396257,21 +414471,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleOfferShiftRequest", + "OutputType": "IMicrosoftGraphOfferShiftRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShifts", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396298,21 +414513,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleOpenShift", + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396331,21 +414547,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleOpenShiftChangeRequest", + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/schedulingGroups", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396364,21 +414581,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleSchedulingGroup", + "OutputType": "IMicrosoftGraphSchedulingGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/shifts", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396397,21 +414615,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleShift", + "OutputType": "IMicrosoftGraphShift" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396430,21 +414649,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleSwapShiftChangeRequest", + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timesOff", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timesOff", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396463,21 +414683,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleTimeOff", + "OutputType": "IMicrosoftGraphTimeOff" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -396496,37 +414717,39 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgTeamScheduleTimeOffReason", + "OutputType": "IMicrosoftGraphTimeOffReason" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/teams/{team-id}/schedule/timeOffRequests", - "Permissions": [], - "Module": "Teams", - "Command": "New-MgTeamScheduleTimeOffRequest", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgTeamTag", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags", + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -396545,327 +414768,346 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "New-MgTeamTag", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/teamwork/deletedChats", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/provisionEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/provisionEmail", + "ApiVersion": "v1.0", "Variants": [ "Provision", "ProvisionViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-provisionemail?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/workforceIntegrations", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0", "Uri": "/users", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded" + ], + "Module": "Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -396916,67 +415158,73 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "New-MgUser", - "Variants": [ - "Create", - "CreateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-user-create?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/appRoleAssignments", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -396990,58 +415238,61 @@ "Name": "UserAuthenticationMethod.ReadWrite", "Description": "Read and write your authentication methods", "FullDescription": "Allows the app to read and write your authentication methods, including phone numbers and Authenticator app settings.This does not allow the app to see secret information like your passwords, or to sign-in or otherwise use your authentication methods.", - "IsAdmin": true, - "PermissionType": "DelegatedWork", - "IsLeastPrivilege": false - } - ], - "Module": "Identity.SignIns", - "Command": "New-MgUserAuthenticationEmailMethod", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": false + } ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/methods", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/operations", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/phoneMethods", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -397060,104 +415311,100 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "New-MgUserAuthenticationPhoneMethod", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTemporaryAccessPassAuthenticationMethod" }, { - "Uri": "/users/{user-id}/calendars", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/calendars/{calendar-id}/events", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendars/{calendar-id}/events", + "ApiVersion": "v1.0", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/calendarGroups", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserCalendarGroupCalendar", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}/calendars", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendar" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "Create1", @@ -397168,925 +415415,993 @@ "CreateViaIdentityExpanded", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/chats", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChat" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppInstallation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/contacts", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/events", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDefaultCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/events", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/drives", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveBundle", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createLink", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemListItemLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemUploadSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListItemLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootChild", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createLink", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootLink", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-createlink?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createLink", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootListItemLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createLink", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createUploadSession", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootUploadSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/events", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserEventAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", "Uri": "/users/{user-id}/events/{event-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -398105,545 +416420,579 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "New-MgUserEventAttachmentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/createUploadSession", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEventInstanceAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/mailFolders", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createForward", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReply", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/createReplyAll", + "ApiVersion": "v1.0", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createForward", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReply", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "v1.0", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/managedDevices", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceLogCollectionResponseDownloadUrl", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}/createDownloadUrl", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceWindowsDefenderUpdateSignature", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsDefenderUpdateSignatures", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-windowsdefenderupdatesignatures?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserMessage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/messages", - "Permissions": [], + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], "Module": "Mail", - "Command": "New-MgUserMessage", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachment" }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments", - "Permissions": [], - "Module": "Mail", - "Command": "New-MgUserMessageAttachment", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserMessageAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/createUploadSession", + "Module": "Users.Actions", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -398662,85 +417011,90 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "New-MgUserMessageAttachmentUploadSession", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/attachment-createuploadsession?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUploadSession" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/createForward", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMessageForward", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/createForward", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createforward?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/createReply", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMessageReply", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/createReply", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreply?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserMessageReplyAll", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/createReplyAll", + "ApiVersion": "v1.0", "Variants": [ "Create1", "CreateExpanded1", "CreateViaIdentity1", "CreateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-createreplyall?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteNotebook", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/notebooks", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -398767,21 +417121,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenoteNotebook", + "OutputType": "IMicrosoftGraphNotebook" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -398808,21 +417163,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenoteNotebookSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}/sectionGroups", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -398849,21 +417205,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenoteNotebookSectionGroup", + "OutputType": "IMicrosoftGraphSectionGroup" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -398890,53 +417247,56 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenotePage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/users/{user-id}/onenote/sections", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgUserOnenoteSection", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/users/{user-id}/onenote/sectionGroups", - "Permissions": [], - "Module": "Notes", - "Command": "New-MgUserOnenoteSectionGroup", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}/sections", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -398963,21 +417323,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenoteSectionGroupSection", + "OutputType": "IMicrosoftGraphOnenoteSection" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages", + "Module": "Notes", "Permissions": [ { "Name": "Notes.Create", @@ -399004,21 +417365,22 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "New-MgUserOnenoteSectionPage", + "OutputType": "IMicrosoftGraphOnenotePage" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/onlineMeetings", + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -399037,165 +417399,175 @@ "IsLeastPrivilege": true } ], - "Module": "CloudCommunications", - "Command": "New-MgUserOnlineMeeting", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/outlook/masterCategories", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/users/{user-id}/settings/windows", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps", + "ApiVersion": "v1.0", + "Variants": [ + "Create", + "CreateExpanded", + "CreateViaIdentity", + "CreateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForUser", @@ -399294,21 +417666,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "New-MgUserTeamworkInstalledApp", + "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserScopeTeamsAppInstallation", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399327,37 +417700,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "New-MgUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions", - "Permissions": [], - "Module": "Users", - "Command": "New-MgUserTodoListExtension", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399376,21 +417751,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "New-MgUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399409,21 +417785,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "New-MgUserTodoListTaskAttachment", + "OutputType": "IMicrosoftGraphAttachmentBase" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTaskAttachmentUploadSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-1.0", + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/createUploadSession", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentBase", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/createUploadSession", + "Module": "Users.Actions", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399442,21 +417819,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "New-MgUserTodoListTaskAttachmentUploadSession", + "OutputType": "IMicrosoftGraphUploadSession" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUploadSession", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/taskfileattachment-createuploadsession?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399475,37 +417853,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "New-MgUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions", - "Permissions": [], - "Module": "Users", - "Command": "New-MgUserTodoListTaskExtension", + "CommandAlias": null, + "Method": "POST", + "Command": "New-MgUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -399524,205 +417904,216 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "New-MgUserTodoListTaskLinkedResource", - "Variants": [ - "Create", - "CreateExpanded", - "CreateViaIdentity", - "CreateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { - "Uri": "/solutions/virtualEvents/events", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "New-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords", + "ApiVersion": "v1.0", "Variants": [ "Create", "CreateExpanded", "CreateViaIdentity", "CreateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/applications/{application-id}/synchronization/Ping", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Ping-MgBetaApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/Ping", + "ApiVersion": "beta", "Variants": [ "Ping", "PingViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/Ping", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "GET", "Command": "Ping-MgBetaServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/Ping", + "ApiVersion": "beta", "Variants": [ "Ping", "PingViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/publish", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaBookingBusiness", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-beta", + "Uri": "/bookingBusinesses/{bookingBusiness-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "Publish1", "PublishViaIdentity", "PublishViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-beta" + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-release?view=graph-rest-beta", "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/release", + "ApiVersion": "beta", + "Variants": [ + "Release", + "ReleaseViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -399741,19 +418132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Publish-MgBetaComplianceEdiscoveryCaseCustodian", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-release?view=graph-rest-beta", + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/release", + "ApiVersion": "beta", "Variants": [ "Release", "ReleaseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-custodian-release?view=graph-rest-beta" - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/release", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -399772,33 +418164,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Publish-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Release", - "ReleaseViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-noncustodialdatasource-release?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgBetaEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "beta", + "Variants": [ + "Publish", + "PublishViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -399817,103 +418211,127 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Publish-MgBetaEducationClassAssignment", - "Variants": [ - "Publish", - "PublishViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/publish", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/publish", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaGroupDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaGroupSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaGroupSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/release", + "ApiVersion": "beta", + "Variants": [ + "Release", + "ReleaseViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -399932,19 +418350,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/release", + "ApiVersion": "beta", "Variants": [ "Release", "ReleaseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-beta" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/release", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -399963,117 +418382,125 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Publish-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Release", - "ReleaseViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaShareListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaUserDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/publish", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/publish", + "ApiVersion": "beta", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/publish", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgBookingBusiness", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0", + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-publish?view=graph-rest-1.0" + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgEducationClassAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "v1.0", + "Variants": [ + "Publish", + "PublishViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -400092,103 +418519,127 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Publish-MgEducationClassAssignment", - "Variants": [ - "Publish", - "PublishViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/publish", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgEducationClassModule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-publish?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/publish", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgEducationMeAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgEducationUserAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-publish?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgGroupDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgGroupSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgGroupSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/release", + "ApiVersion": "v1.0", + "Variants": [ + "Release", + "ReleaseViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -400207,19 +418658,20 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Publish-MgSecurityCaseEdiscoveryCaseCustodian", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/release", + "ApiVersion": "v1.0", "Variants": [ "Release", "ReleaseViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-release?view=graph-rest-1.0" - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/release", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -400238,297 +418690,318 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Publish-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", - "Variants": [ - "Release", - "ReleaseViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-release?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgShareListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Publish-MgUserDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/publish", + "ApiVersion": "v1.0", "Variants": [ "Publish", "PublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-publish?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/register", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Register-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/register", + "ApiVersion": "beta", "Variants": [ "Register", "RegisterExpanded", "RegisterViaIdentity", "RegisterViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/sharepoint/settings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAdminSharepointSetting", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint/settings", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/removeAllDevicesFromManagement", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": "Remove-MgUserDeviceFromManagement", + "Method": "POST", "Command": "Remove-MgAllUserDeviceFromManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-user-removealldevicesfrommanagement?view=graph-rest-1.0", + "Uri": "/users/{user-id}/removeAllDevicesFromManagement", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-user-removealldevicesfrommanagement?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -400555,19 +419028,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgAppCatalogTeamApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "Module": "Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -400594,33 +419068,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgAppCatalogTeamAppDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400639,100 +419115,65 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplication", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref", - "Permissions": [], - "Module": "Applications", + "CommandAlias": "Remove-MgApplicationAppManagementPolicyByRef", + "Method": "DELETE", "Command": "Remove-MgApplicationAppManagementPolicyAppManagementPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/appManagementPolicies/$ref", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read all applications", - "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Policy.ReadWrite.ApplicationConfiguration", - "Description": "Read and write your organization's application configuration policies", - "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Policy.Read.ApplicationConfiguration", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Applications", - "Command": "Remove-MgApplicationAppManagementPolicyByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications(appId='{appId}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", + "Uri": "/applications(appId='{appId}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0", + "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400759,19 +419200,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationExtensionProperty", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400790,33 +419232,37 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationFederatedIdentityCredential", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgApplicationKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-1.0", "Uri": "/applications/{application-id}/removeKey", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400843,35 +419289,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationKey", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/applications/{application-id}/owners/$ref", - "Permissions": [], - "Module": "Applications", - "Command": "Remove-MgApplicationOwnerByRef", + "CommandAlias": "Remove-MgApplicationOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgApplicationOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/owners/{directoryObject-id}/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400898,19 +419329,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgApplicationPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0", "Uri": "/applications/{application-id}/removePassword", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -400937,105 +419371,110 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationPassword", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -401054,102 +419493,35 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationSynchronizationTemplateSchema", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgApplicationSynchronizationTemplateSchemaDirectory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", - "Permissions": [], - "Module": "Applications", - "Command": "Remove-MgApplicationTokenIssuancePolicyByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref", - "Permissions": [ - { - "Name": "Policy.Read.All", - "Description": "Read your organization's policies", - "FullDescription": "Allows the app to read all your organization's policies without a signed in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Policy.ReadWrite.ApplicationConfiguration", - "Description": "Read and write your organization's application configuration policies", - "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Policy.Read.ApplicationConfiguration", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.OwnedBy", - "Description": "Manage apps that this app creates or owns", - "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write all applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Applications", + "CommandAlias": "Remove-MgApplicationTokenIssuancePolicyByRef", + "Method": "DELETE", "Command": "Remove-MgApplicationTokenIssuancePolicyTokenIssuancePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -401192,19 +419564,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationTokenLifetimePolicyByRef", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgApplicationTokenLifetimePolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -401247,19 +419620,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgApplicationTokenLifetimePolicyTokenLifetimePolicyByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/accessReviews/{accessReview-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -401278,103 +419652,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaAccessReview", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstance", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewInstanceReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAccessReviewMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaAccessReviewReviewer", + "ApiReferenceLink": null, "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -401393,347 +419774,372 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaAccessReviewReviewer", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnit", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delete?view=graph-rest-beta", + "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-delete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitMemberByRef", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaAdministrativeUnitMemberByRef", + "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/people", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminPeople", + "ApiReferenceLink": null, + "Uri": "/admin/people", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/people/itemInsights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminPeopleItemInsight", + "ApiReferenceLink": null, + "Uri": "/admin/people/itemInsights", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/people/pronouns", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminPeoplePronoun", + "ApiReferenceLink": null, + "Uri": "/admin/people/pronouns", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/reportSettings", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminReportSetting", + "ApiReferenceLink": null, + "Uri": "/admin/reportSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/sharepoint/settings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAdminSharepointSetting", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint/settings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/removeAllDevicesFromManagement", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": "Remove-MgBetaUserDeviceFromManagement", + "Method": "POST", "Command": "Remove-MgBetaAllUserDeviceFromManagement", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/removeAllDevicesFromManagement", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaAppCatalogTeamApp", + "ApiReferenceLink": null, "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -401760,19 +420166,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaAppCatalogTeamApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "AppCatalog.Submit", @@ -401799,103 +420206,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaAppCatalogTeamAppDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionColorIcon", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionDashboardCard", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -401914,114 +420328,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplication", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaApplicationAppManagementPolicyByRef", + "Method": "DELETE", "Command": "Remove-MgBetaApplicationAppManagementPolicyAppManagementPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/appManagementPolicies/{appManagementPolicy-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/appManagementPolicies/$ref", - "Permissions": [ - { - "Name": "Application.Read.All", - "Description": "Read all applications", - "FullDescription": "Allows the app to read all applications and service principals without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Policy.ReadWrite.ApplicationConfiguration", - "Description": "Read and write your organization's application configuration policies", - "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Policy.Read.ApplicationConfiguration", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationAppManagementPolicyByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications(appId='{appId}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", + "Uri": "/applications(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta", + "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-delete?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/connectorGroup/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationConnectorGroupByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationExtensionProperty", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402048,19 +420428,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationExtensionProperty", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402079,33 +420460,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationFederatedIdentityCredential", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaApplicationKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-beta", "Uri": "/applications/{application-id}/removeKey", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402130,37 +420515,22 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - } - ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationKey", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removekey?view=graph-rest-beta" - }, - { - "Uri": "/applications/{application-id}/owners/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationOwnerByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaApplicationOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402187,19 +420557,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaApplicationPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-beta", "Uri": "/applications/{application-id}/removePassword", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402226,105 +420599,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationPassword", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-removepassword?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -402343,102 +420721,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationSynchronizationTemplateSchema", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaApplicationSynchronizationTemplateSchemaDirectory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenIssuancePolicies/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationTokenIssuancePolicyByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref", - "Permissions": [ - { - "Name": "Policy.Read.All", - "Description": "Read your organization's policies", - "FullDescription": "Allows the app to read all your organization's policies without a signed in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "Policy.ReadWrite.ApplicationConfiguration", - "Description": "Read and write your organization's application configuration policies", - "FullDescription": "Allows the app to read and write your organization's application configuration policies, without a signed-in user. This includes policies such as activityBasedTimeoutPolicy, claimsMappingPolicy, homeRealmDiscoveryPolicy, tokenIssuancePolicy and tokenLifetimePolicy.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Policy.Read.ApplicationConfiguration", - "Description": "Consent name unavailable", - "FullDescription": "Consent description unavailable", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.OwnedBy", - "Description": "Manage apps that this app creates or owns", - "FullDescription": "Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user.  It cannot update any apps that it is not an owner of.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - }, - { - "Name": "Application.ReadWrite.All", - "Description": "Read and write all applications", - "FullDescription": "Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaApplicationTokenIssuancePolicyByRef", + "Method": "DELETE", "Command": "Remove-MgBetaApplicationTokenIssuancePolicyTokenIssuancePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenIssuancePolicies/{tokenIssuancePolicy-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -402481,19 +420792,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationTokenLifetimePolicyByRef", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaApplicationTokenLifetimePolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/applications/{application-id}/tokenLifetimePolicies/{tokenLifetimePolicy-id}/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -402536,19 +420848,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaApplicationTokenLifetimePolicyTokenLifetimePolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusiness", + "ApiReferenceLink": null, "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "Delete1", + "DeleteViaIdentity", + "DeleteViaIdentity1" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.Manage.All", @@ -402567,21 +420882,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusiness", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -402616,37 +420932,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessAppointment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -402681,21 +420999,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -402722,21 +421041,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessCustomQuestion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -402755,21 +421075,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessService", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -402788,51 +421109,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBookingBusinessStaffMember", - "Variants": [ - "Delete", - "Delete1", - "DeleteViaIdentity", - "DeleteViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/bookingCurrencies/{bookingCurrency-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessFlowTemplate", + "ApiReferenceLink": null, + "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBusinessScenario", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -402851,61 +421173,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBusinessScenario", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioByUniqueName", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlanner", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerPlanConfiguration", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -402924,133 +421250,142 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Remove-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTask", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskConfiguration", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskDetail", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-beta", + "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/removeAllAccessForUser", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaChatAccessForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/removeAllAccessForUser", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -403109,33 +421444,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaChatInstalledApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChatMember.ReadWrite", @@ -403162,61 +421499,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaChatMember", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaChatOperation", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -403235,19 +421576,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaChatPinnedMessage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaChatTab", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForChat", @@ -403298,19 +421640,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaChatTab", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaCommunicationCall", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -403329,19 +421672,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaCommunicationCall", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -403360,47 +421704,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaCommunicationCallAudioRoutingGroup", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -403419,218 +421766,233 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaCommunicationCallParticipant", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordOrganizerV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordParticipantV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistration", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscovery", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403649,36 +422011,30 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCase", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/removeHold", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/removeHold", + "ApiVersion": "beta", "Variants": [ "Remove", "Remove1", @@ -403687,13 +422043,22 @@ "RemoveViaIdentity1", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403712,33 +422077,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403757,19 +422124,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403788,78 +422156,75 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHold", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/removeHold", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/removeHold", + "ApiVersion": "beta", "Variants": [ "Remove", "Remove1", @@ -403868,41 +422233,52 @@ "RemoveViaIdentity1", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403921,33 +422297,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseReviewSetQuery", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/settings", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseSourceCollection", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -403966,33 +422344,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseSourceCollection", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaComplianceEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -404011,61 +422391,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Remove-MgBetaComplianceEdiscoveryCaseTag", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaContract", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta", "Uri": "/devices/{device-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -404084,33 +422468,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtAndroidManagedAppProtection", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404129,19 +422515,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404160,33 +422547,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtDefaultManagedAppProtection", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404205,19 +422594,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404236,131 +422626,140 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificate", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSLobAppProvisioningConfiguration", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSManagedAppProtection", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404379,19 +422778,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404410,103 +422810,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppRegistration", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequest", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppRegistrationOperation", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404525,145 +422932,155 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedAppStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBook", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookCategory", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookDeviceState", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookInstallSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookUserStateSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404682,19 +423099,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404713,19 +423131,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -404744,1376 +423163,1474 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicense", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppCatalogPackage", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppCatalogPackage", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppCategory", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtMobileAppRelationship", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtPolicySet", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementPolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtPolicySetAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementPolicySetAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtPolicySetItem", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementPolicySetItem", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtSymantecCodeSigningCertificate", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementSymantecCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406132,19 +424649,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406163,33 +424681,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406208,19 +424728,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtTask", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementTask", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406239,19 +424760,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementTask", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtVppToken", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -406270,75 +424792,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementVppToken", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignment", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtWdacSupplementalPolicyDeploySummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementWdacSupplementalPolicyDeploySummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtWdacSupplementalPolicyDeviceStatus", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistration", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406357,19 +424884,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406388,19 +424916,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406419,19 +424948,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406450,19 +424980,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -406481,19 +425012,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowInformationProtectionWipeAction", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406512,19 +425044,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowManagedAppProtection", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406543,19 +425076,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406574,19 +425108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignment", + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406605,323 +425140,346 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Remove-MgBetaDeviceAppMgtWindowManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceAppManagementWindowsManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta", + "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidForWorkSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/applePushNotificationCertificate", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAutopilotEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCartToClassAssociation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -406940,75 +425498,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementComanagedDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaDeviceManagementComanagedDeviceFirmwareConfigurationInterfaceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -407027,133 +425590,142 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Remove-MgBetaDeviceManagementComanagedDeviceFirmwareConfigurationInterfaceManagement", - "Variants": [ - "Remove", - "RemoveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceUserFromSharedAppleDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementComanagementEligibleDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -407172,19 +425744,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementComanagementEligibleDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -407203,214 +425776,229 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementCompliancePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementComplianceSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/conditionalAccessSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDataSharingConsent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -407429,75 +426017,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDataSharingConsent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDerivedCredential", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -407516,19 +426109,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDetectedApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -407547,380 +426141,407 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceCategory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationConflictSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -407939,19 +426560,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -407970,19 +426592,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -408001,19 +426624,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceHealthScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -408032,19 +426656,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -408063,33 +426688,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -408108,19 +426735,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceShellScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -408139,19 +426767,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -408170,19 +426799,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -408201,19 +426831,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -408232,89 +426863,95 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptUserRunState", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementDomainJoinConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -408333,639 +426970,684 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementExchangeConnector", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementExchangeOnPremisePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyObjectFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/remove", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/remove", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/removeLanguageFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/removeLanguageFiles", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementImportedDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategorySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentUserState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntentUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIntuneBrandingProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryUpdateStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -408984,103 +427666,110 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCleanupRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceEncryptionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaDeviceManagementManagedDeviceFirmwareConfigurationInterfaceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -409099,231 +427788,247 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Remove-MgBetaDeviceManagementManagedDeviceFirmwareConfigurationInterfaceManagement", - "Variants": [ - "Remove", - "RemoveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDeviceManagementManagedDeviceUserFromSharedAppleDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSite", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -409342,19 +428047,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -409373,102 +428079,109 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoring", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoringAlertRecord", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementMonitoringAlertRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNdeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -409487,19 +428200,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementPartner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRemoteActionAudit", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409518,19 +428232,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementRemoteActionAudit", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -409549,60 +428264,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementResourceAccessProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -409621,33 +428340,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementResourceOperation", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementReusableSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -409666,19 +428387,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -409697,19 +428419,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementRoleDefinition", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -409728,19 +428451,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409759,47 +428483,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Remove-MgBetaDeviceManagementRoleScopeTag", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementRoleScopeTagAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementScriptAssignment", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409818,19 +428545,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementScriptAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409849,19 +428577,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementScriptDeviceRunState", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409880,19 +428609,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementScriptGroupAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409911,19 +428641,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementScriptUserRunState", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -409942,257 +428673,275 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateMigratableToSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTemplateSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTermAndConditionGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/{userExperienceAnalyticsAnomaly-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410211,33 +428960,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410256,19 +429007,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410287,19 +429039,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410318,19 +429071,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410349,19 +429103,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410380,19 +429135,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410411,19 +429167,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410442,19 +429199,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410473,19 +429231,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410504,19 +429263,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410535,46 +429295,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410593,19 +429356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410624,32 +429388,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410668,19 +429434,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410699,19 +429466,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410730,19 +429498,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410761,19 +429530,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410792,60 +429562,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410864,19 +429638,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410895,19 +429670,21 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "ApiVersion": "beta", "Variants": [ "Delete", + "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410926,20 +429703,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", "Variants": [ "Delete", - "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410958,19 +429735,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -410989,19 +429767,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411020,19 +429799,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411051,33 +429831,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411096,19 +429878,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411127,19 +429910,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411158,19 +429942,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411189,19 +429974,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411220,32 +430006,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411264,19 +430052,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411295,19 +430084,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411326,32 +430116,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411370,19 +430162,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411401,19 +430194,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -411432,407 +430226,436 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementUserPfxCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointBulkAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSnapshot", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointSupportedRegion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsAutopilotSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -411851,19 +430674,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -411882,354 +430706,368 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Remove-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDeviceRegisteredOwnerByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaDeviceRegisteredOwnerByRef", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceRegisteredOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDeviceRegisteredUserByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaDeviceRegisteredUserByRef", + "Method": "DELETE", "Command": "Remove-MgBetaDeviceRegisteredUserDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnitExtension", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectoryAdministrativeUnitMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaDirectoryAdministrativeUnitMemberByRef", + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnitMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/attributeSets/{attributeSet-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/certificateAuthorities", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": null }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryDeletedItem", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaDirectoryFeatureRolloutPolicyApplyToByRef", + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryFeatureRolloutPolicyApplyToDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.ReadWrite.All", @@ -412248,47 +431086,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectoryFederationConfiguration", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directory/impactedResources/{impactedResource-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryInboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaDirectoryInboundSharedUserProfilePersonalData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-removepersonaldata?view=graph-rest-beta", "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}/removePersonalData", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.ReadWrite", @@ -412307,75 +431148,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectoryInboundSharedUserProfilePersonalData", - "Variants": [ - "Remove", - "RemoveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/inboundshareduserprofile-removepersonaldata?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-beta", + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-beta" + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfileTenant", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfileTenantPersonalData", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantreference-removepersonaldata?view=graph-rest-beta", "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}/removePersonalData", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "RemoveViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "CrossTenantUserProfileSharing.ReadWrite", @@ -412394,145 +431240,140 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectoryOutboundSharedUserProfileTenantPersonalData", - "Variants": [ - "Remove", - "RemoveViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tenantreference-removepersonaldata?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryPendingExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/recommendations/{recommendation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRecommendation", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleByRoleTemplateId", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectoryRoleMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": "Remove-MgBetaDirectoryRoleMemberByRef", + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDirectorySetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-delete?view=graph-rest-beta", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -412551,173 +431392,185 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaDirectorySetting", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectorySettingTemplate", + "ApiReferenceLink": null, + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectorySharedEmailDomain", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDirectorySubscriptionByOcpSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-beta", + "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDomainSharedEmailDomainInvitation", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -412744,145 +431597,155 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Remove-MgBetaDriveItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -412909,481 +431772,515 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Remove-MgBetaDriveItemPermission", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413402,19 +432299,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413433,33 +432331,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentCategory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentCategoryByRef", + "CommandAlias": "Remove-MgBetaEducationClassAssignmentCategoryByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413478,33 +432363,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentCategoryEducationCategoryByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413523,19 +432410,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentResource", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413554,19 +432442,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentResourceDependentResource", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413585,19 +432474,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentRubric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413616,47 +432506,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentRubricByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentSettingGradingScheme", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413675,47 +432568,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSettingGradingScheme", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413734,19 +432630,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResource", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -413765,326 +432662,338 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassMemberByRef", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/members/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationClassMemberByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassMemberEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/members/{educationUser-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/teachers/$ref", - "Permissions": [], "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationClassTeacherByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/teachers/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationClassTeacherByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationClassTeacherEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/teachers/{educationUser-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMe", + "ApiReferenceLink": null, + "Uri": "/education/me", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationMeAssignmentCategoryByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationMeAssignmentCategoryByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -414103,691 +433012,665 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationMeRubric", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationSchool", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/classes/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationSchoolClassByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/classes/{educationClass-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationSchoolClassByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationSchoolClassEducationClassByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/{educationClass-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/users/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationSchoolUserByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/users/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationSchoolUserByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationSchoolUserEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/users/{educationUser-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfileError", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationSynchronizationProfileStatus", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Remove-MgBetaEducationUserAssignmentCategoryByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": "Remove-MgBetaEducationUserAssignmentCategoryByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementConnectedOrganization", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": "Remove-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": "Remove-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaEntitlementManagementSubjectByObjectId", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalAuthorizationSystemDataCollectionInfo", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -414806,19 +433689,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaExternalConnection", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -414837,19 +433721,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaExternalConnectionGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -414868,19 +433753,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaExternalConnectionGroupMember", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -414899,1661 +433785,1762 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaExternalConnectionItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/quota", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalConnectionQuota", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/quota", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": null, + "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataInboundFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOperation", + "ApiReferenceLink": null, + "Uri": "/external/industryData/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataReferenceDefinition", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/roleGroups/{roleGroup-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataRoleGroup", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups/{roleGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataSourceSystem", + "ApiReferenceLink": null, + "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaExternalIndustryDataYear", + "ApiReferenceLink": null, + "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCountryRegion", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyEmployee", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyEmployeePicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/journals/{journal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoicePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleInvoiceShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleOrderPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuotePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanySaleQuoteShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyTaxArea", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyTaxGroup", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyUnitOfMeasure", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaFinancialCompanyVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroup", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta", + "Uri": "/groups/{group-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/acceptedSenders/$ref", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupAcceptedSenderByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": "Remove-MgBetaGroupAcceptedSenderByRef", + "Method": "DELETE", "Command": "Remove-MgBetaGroupAcceptedSenderDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta", + "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -416572,33 +435559,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Remove-MgBetaGroupCalendarEvent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -416617,19 +435606,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupConversation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -416648,733 +435638,785 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupConversationThread", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupConversationThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/drives/{drive-id}", + "Module": "Beta.Groups", "Permissions": [], - "Module": "Beta.Files", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaGroupDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaGroupDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEndpoint", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -417393,233 +436435,234 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Remove-MgBetaGroupEvent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/removeFavorite", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaGroupFavorite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-beta", + "Uri": "/groups/{group-id}/removeFavorite", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaGroupFromLifecyclePolicy", + "ApiReferenceLink": null, + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-beta", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupMemberByRef", + "CommandAlias": "Remove-MgBetaGroupMemberByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaGroupMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/$ref", + "Module": "Beta.Groups", "Permissions": [ { "Name": "GroupMember.ReadWrite.All", @@ -417646,33 +436689,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupMemberDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -417691,61 +436736,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Remove-MgBetaGroupOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/$ref", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupOwnerByRef", + "CommandAlias": "Remove-MgBetaGroupOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaGroupOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/$ref", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -417764,19 +436798,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaGroupPasswordSingleSignOnCredential", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/deletePasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteExpanded", + "DeleteViaIdentity", + "DeleteViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -417803,35 +436840,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupPasswordSingleSignOnCredential", - "Variants": [ - "Delete", - "DeleteExpanded", - "DeleteViaIdentity", - "DeleteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "ProfilePhoto.ReadWrite.All", @@ -417850,61 +436887,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupPhoto", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/rejectedSenders/$ref", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupRejectedSenderByRef", + "CommandAlias": "Remove-MgBetaGroupRejectedSenderByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaGroupRejectedSenderDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupRejectedSenderDirectoryObjectByRef", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -417923,1821 +436949,1949 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupSetting", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/remove", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/remove", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteRecycleBinItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -419756,552 +438910,576 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Remove-MgBetaGroupThread", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostInReplyToMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaGroupThreadPostMention", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlow", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/{identityProviderBase-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderBaseByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/{identityProviderBase-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnAuthenticationMethodLoadStartExternalUserSelfServiceSignUpIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAuthenticationMethodLoadStart/onAuthenticationMethodLoadStartExternalUsersSelfServiceSignUp/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/{identityUserFlowAttribute-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowAsOnGraphAPretributeCollectionExternalUserSelfServiceSignUpAttributeIdentityUserFlowAttributeByRef", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/onAttributeCollection/onAttributeCollectionExternalUsersSelfServiceSignUp/attributes/{identityUserFlowAttribute-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowIdentityProviderByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/identityProviders/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2CUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": "Remove-MgBetaIdentityB2XUserFlowIdentityProviderByRef", + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowIdentityProviderBaseByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaIdentityB2XUserFlowIdentityProviderByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowPreTokenIssuance", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrength", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths", + "ApiVersion": "beta", "Variants": [ "Delete1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete1", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete1", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete1", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -420320,19 +439498,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaIdentityConditionalAccessNamedLocation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -420351,1129 +439530,1210 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaIdentityConditionalAccessPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/continuousAccessEvaluationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityContinuouAccessEvaluationPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/continuousAccessEvaluationPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/policy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/policy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalytic", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAw", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAwFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzure", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcp", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}", - "Permissions": [], "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceRoleManagementAlertOperation", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/identityProviders/{identityProviderBase-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/userFlows/{identityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-beta", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -421492,289 +440752,262 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaOauth2PermissionGrant", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfile", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}/agentGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", - "Delete1", - "DeleteViaIdentity", - "DeleteViaIdentity1" + "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id1}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfileAgentGroupByRef", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupOnPremiseAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}/agentGroups/{onPremisesAgentGroup-id1}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id1}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnector", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorGroup", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/{connector-id}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfileConnectorGroupMemberByRef", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorGroupMemberConnectorByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/members/{connector-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfileConnectorMemberOfByRef", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfileConnectorMemberOfConnectorGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}/memberOf/{connectorGroup-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfilePublishedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": "Remove-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupByRef", + "Method": "DELETE", "Command": "Remove-MgBetaOnPremisePublishingProfilePublishedResourceAgentGroupOnPremiseAgentGroupByRef", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}/agentGroups/{onPremisesAgentGroup-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaOrganizationBranding", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -421793,19 +441026,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaOrganizationBranding", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaOrganizationBrandingLocalization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -421824,187 +441058,200 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Remove-MgBetaOrganizationBrandingLocalization", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/partnerInformation", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationPartnerInformation", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/partnerInformation", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/settings", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSetting", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/settings/contactInsights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingContactInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/contactInsights", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/settings/itemInsights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/settings/peopleInsights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaOrganizationSettingPersonInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlaceAsRoomListWorkspace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places(placeId='{placeId}')", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlaceByPlaceId", + "ApiReferenceLink": null, + "Uri": "/places(placeId='{placeId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -422031,19 +441278,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerBucket", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -422070,19 +441318,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerPlan", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPlannerRoster", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/rosters/{plannerRoster-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -422101,19 +441350,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerRoster", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPlannerRosterMember", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -422132,19 +441382,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerRosterMember", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -422171,74 +441422,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Remove-MgBetaPlannerTask", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/accessReviewPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422257,32 +441513,34 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/adminConsentRequestPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422301,59 +441559,63 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyAppManagementPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authenticationFlowsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -422372,74 +441634,79 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/b2cAuthenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyB2CAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422458,206 +441725,206 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyClaimMappingPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/default", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/defaultAppManagementPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/directoryRoleAccessReviewPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyDirectoryRoleAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/externalIdentitiesPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyExternalIdentityPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/externalIdentitiesPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyFeatureRolloutPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": "Remove-MgBetaPolicyFeatureRolloutPolicyApplyToByRef", + "Method": "DELETE", "Command": "Remove-MgBetaPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/federatedTokenValidationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyFederatedTokenValidationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/federatedTokenValidationPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422676,232 +441943,248 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileAppManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileDeviceManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyMobileDeviceManagementPolicyIncludedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}/includedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + ], + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPolicyServicePrincipalCreationPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422920,19 +442203,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyTokenIssuancePolicy", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -422951,191 +442235,204 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaPolicyTokenLifetimePolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/operations/{printOperation-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinter", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintPrinterShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -423154,712 +442451,754 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Remove-MgBetaPrintPrinterTaskTrigger", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/services/{printService-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedAccessRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApproval", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedApprovalRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedOperationEvent", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoles/{privilegedRole-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRole", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaPrivilegedRoleSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/programs/{program-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaProgram", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-delete?view=graph-rest-beta", + "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-delete?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/programControls/{programControl-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaProgramControl", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-delete?view=graph-rest-beta", + "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", @@ -423868,327 +443207,359 @@ "DeleteViaIdentity1", "DeleteViaIdentity2" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/programcontrol-delete?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/programControls/{programControl-id}/program", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaProgramControlProgram", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/programControlTypes/{programControlType-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaProgramControlType", + "ApiReferenceLink": null, + "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/sla/azureADAuthentication", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportSlaAzureAdAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/sla/azureADAuthentication", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/daily", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportUserInsightDaily", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/userInsights/monthly", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaReportUserInsightMonthly", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPc", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -424207,33 +443578,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementCloudPcRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -424276,88 +443649,94 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementCloudPcRoleDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -424376,33 +443755,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -424445,186 +443826,199 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -424643,410 +444037,439 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseApp", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -425065,354 +444488,379 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchange", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeCustomAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-beta", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -425431,19 +444879,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.SchemaExtensions", - "Command": "Remove-MgBetaSchemaExtension", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-beta" - }, - { - "Uri": "/search/acronyms/{acronym-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -425462,19 +444911,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaSearchAcronym", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks/{bookmark-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -425493,19 +444943,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaSearchBookmark", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/search/qnas/{qna-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -425524,284 +444975,304 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Remove-MgBetaSearchQna", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/securityActions/{securityAction-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAction", + "ApiReferenceLink": null, + "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/alerts_v2/{alert-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTrainingCampaign", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/auditLog", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLog", + "ApiReferenceLink": null, + "Uri": "/security/auditLog", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLogQuery", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityAuditLogQueryRecord", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases", - "Permissions": [], "Module": "Beta.Security", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -425820,33 +445291,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCase", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/removeHold", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "Remove1", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentity1", + "RemoveViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -425865,65 +445342,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianHold", - "Variants": [ - "Remove", - "Remove1", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentity1", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -425942,61 +445419,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHold", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/removeHold", + "ApiVersion": "beta", + "Variants": [ + "Remove", + "Remove1", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentity1", + "RemoveViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -426015,79 +445500,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", - "Variants": [ - "Remove", - "Remove1", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentity1", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -426106,47 +445592,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -426165,975 +445654,1045 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Remove-MgBetaSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCloudAppSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/collaboration", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCollaboration", + "ApiReferenceLink": null, + "Uri": "/security/collaboration", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": null, + "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityDomainSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityFileSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityHostSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/identities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityIdentity", + "ApiReferenceLink": null, + "Uri": "/security/identities", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/identities/healthIssues/{healthIssue-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityIdentityHealthIssue", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues/{healthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/incidents/{incident-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/informationProtection/labelPolicySettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityIPSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityProviderTenantSetting", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/rules", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityRule", + "ApiReferenceLink": null, + "Uri": "/security/rules", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/rules/detectionRules/{detectionRule-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityRuleDetectionRule", + "ApiReferenceLink": null, + "Uri": "/security/rules/detectionRules/{detectionRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/secureScores/{secureScore-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatSubmission", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmission", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionEmailThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionFileThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityThreatSubmissionUrlThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/tiIndicators/{tiIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityTiIndicator", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/tiIndicators/deleteTiIndicatorsByExternalId", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaSecurityTiIndicatorByExternalId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicatorsbyexternalid?view=graph-rest-beta", + "Uri": "/security/tiIndicators/deleteTiIndicatorsByExternalId", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResultInfo", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicatorsbyexternalid?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphResultInfo" }, { - "Uri": "/security/tiIndicators/deleteTiIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaSecurityTiIndicatorMultiple", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicators?view=graph-rest-beta", + "Uri": "/security/tiIndicators/deleteTiIndicators", + "ApiVersion": "beta", "Variants": [ "Delete1", "DeleteExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResultInfo", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-deletetiindicators?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphResultInfo" }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSecurityUserSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -427160,75 +446719,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipal", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals(appId='{appId}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalClaimMappingPolicyByRef", + "CommandAlias": "Remove-MgBetaServicePrincipalClaimMappingPolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/{claimsMappingPolicy-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/{claimsMappingPolicy-id}/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -427271,61 +446820,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalDelegatedPermissionClassification", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, + "CommandAlias": null, "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalEndpoint", + "Command": "Remove-MgBetaServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/$ref", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -427368,47 +446906,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalOwnerByRef", + "CommandAlias": "Remove-MgBetaServicePrincipalOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/$ref", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -427435,19 +446961,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaServicePrincipalPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-deletepasswordsinglesignoncredentials?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/deletePasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteExpanded", + "DeleteViaIdentity", + "DeleteViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -427474,77 +447003,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalPasswordSingleSignOnCredential", - "Variants": [ - "Delete", - "DeleteExpanded", - "DeleteViaIdentity", - "DeleteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-deletepasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -427563,33 +447095,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -427616,339 +447150,362 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Remove-MgBetaServicePrincipalSynchronizationJobSchema", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -427967,19 +447524,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteColumn", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -427998,19 +447556,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteContentType", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -428029,95 +447588,101 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteContentTypeColumn", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -428136,19 +447701,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListColumn", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -428167,19 +447733,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListContentType", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -428198,61 +447765,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListContentTypeColumn", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -428287,117 +447858,125 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Remove-MgBetaSiteListItemDocumentSetVersion", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaSiteOnenotePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -428416,633 +447995,677 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Remove-MgBetaSiteOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscribedSkus/{subscribedSku-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-beta", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Channel.Delete.Group", @@ -429077,75 +448700,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamChannel", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForTeam", @@ -429220,19 +448848,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamChannelTab", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -429299,187 +448928,200 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamInstalledApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/removeEmail", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaTeamPrimaryChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/removeEmail", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleOpenShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429498,33 +449140,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleOpenShift", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429543,19 +449187,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleSchedulingGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429582,61 +449227,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleShift", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleTimeOff", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429655,19 +449304,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOff", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429686,19 +449336,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOffReason", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -429717,19 +449368,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamScheduleTimeOffRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamTag", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -429748,19 +449400,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamTag", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -429779,956 +449432,1024 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaTeamTagMember", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/removeEmail", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDevice", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/activity", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceActivity", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/activity", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/health", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceHealth", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/health", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkDeviceOperation", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/teamsAppSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamAppSetting", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "beta", "Variants": [ "Delete" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantAuditEvent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcConnection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcDevice", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCloudPcOverview", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantCustomizedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDetailedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenantGroups/{tenantGroup-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantGroup", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantGroups/{tenantGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementIntent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantMyRole", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/{windowsProtectionState-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/{windowsProtectionState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTrustFrameworkKeySet", + "ApiReferenceLink": null, + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaTrustFrameworkPolicy", + "ApiReferenceLink": null, + "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delete?view=graph-rest-beta", "Uri": "/users/{user-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -430771,75 +450492,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUser", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-delete?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserActivityStatistics", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -430858,19 +450584,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationEmailMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -430889,19 +450616,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationFido2Method", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -430920,33 +450648,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationMicrosoftAuthenticatorMethod", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/passwordlessMicrosoftAuthenticatorMethods/{passwordlessMicrosoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -430965,19 +450695,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationPasswordlessMicrosoftAuthenticatorMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -430996,33 +450727,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationPhoneMethod", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserAuthenticationPlatformCredentialMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/platformCredentialMethods/{platformCredentialAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -431041,19 +450774,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationSoftwareOathMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -431072,19 +450806,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationTemporaryAccessPassMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -431103,1889 +450838,1993 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Remove-MgBetaUserAuthenticationWindowsHelloForBusinessMethod", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/removeAllAccessForUser", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserChatAccessForUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/removeAllAccessForUser", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-removeallaccessforuser?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceByDeviceId", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceManagementTroubleshootingEvent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", - "Command": "Remove-MgBetaUserDeviceRegisteredOwnerByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": "Remove-MgBetaUserDeviceRegisteredOwnerByRef", + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceRegisteredOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", - "Command": "Remove-MgBetaUserDeviceRegisteredUserByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": "Remove-MgBetaUserDeviceRegisteredUserByRef", + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceRegisteredUserDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExceptionOccurrenceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/followedSites/remove", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserFollowedSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta", + "Uri": "/users/{user-id}/followedSites/remove", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInsightShared", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/trending/{trending-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInsightTrending", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending/{trending-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserInsightUsed", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserManagedDeviceFirmwareConfigurationInterfaceManagement", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/removeDeviceFirmwareConfigurationInterfaceManagement", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgBetaUserManagedDeviceUserFromSharedAppleDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserManagerByRef", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -433004,145 +452843,155 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserManagerByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMessageMention", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/mentions/{mention-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppIntentAndState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/notifications/{notification-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserNotification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -433161,47 +453010,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Notes", - "Command": "Remove-MgBetaUserOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -433220,79 +453072,84 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaUserOnlineMeeting", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserOnlineMeetingRegistration", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -433311,33 +453168,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaUserOnlineMeetingRegistration", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -433364,173 +453223,187 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Remove-MgBetaUserOnlineMeetingRegistrationRegistrant", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserOutlookTaskGroupTaskFolderTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}/attachments/{attachment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgBetaUserPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-deletepasswordsinglesignoncredentials?view=graph-rest-beta", "Uri": "/users/{user-id}/deletePasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteExpanded", + "DeleteViaIdentity", + "DeleteViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -433557,21 +453430,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Remove-MgBetaUserPasswordSingleSignOnCredential", - "Variants": [ - "Delete", - "DeleteExpanded", - "DeleteViaIdentity", - "DeleteViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-deletepasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -433598,33 +453470,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserPhoto", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/presence", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserPresence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfile", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433643,19 +453517,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfile", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433674,19 +453549,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAccount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileAddress", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433705,19 +453581,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAddress", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileAnniversary", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433736,19 +453613,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAnniversary", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileAward", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433767,19 +453645,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileAward", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileCertification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433798,19 +453677,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileCertification", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileEducationalActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433829,19 +453709,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileEducationalActivity", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileEmail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433860,19 +453741,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileEmail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileInterest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433891,19 +453773,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileInterest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileLanguage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433922,19 +453805,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileLanguage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/names/{personName-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -433953,19 +453837,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileName", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileNote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -434008,19 +453893,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileNote", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfilePatent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434039,19 +453925,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePatent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfilePhone", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434070,19 +453957,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePhone", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfilePosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434101,19 +453989,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePosition", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileProject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434132,19 +454021,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileProject", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfilePublication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434163,19 +454053,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfilePublication", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileSkill", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434194,19 +454085,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileSkill", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileWebAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434225,19 +454117,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileWebAccount", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserProfileWebsite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -434256,271 +454149,290 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Remove-MgBetaUserProfileWebsite", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/security", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSecurity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/security/informationProtection/labelPolicySettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/contactMergeSuggestions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingContactMergeSuggestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/contactMergeSuggestions", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/itemInsights", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingRegionalAndLanguageSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/shiftPreferences", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingShiftPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/storage", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/storage/quota", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorageQuota", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingStorageQuotaService", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForUser", @@ -434619,19 +454531,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Remove-MgBetaUserTeamworkInstalledApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTodoList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.Read", @@ -434658,33 +454571,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoList", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTodoListTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -434703,19 +454618,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoListTask", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTodoListTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -434734,33 +454650,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoListTaskAttachment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -434779,33 +454697,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoListTaskChecklistItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBetaUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -434824,492 +454744,518 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Remove-MgBetaUserTodoListTaskLinkedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhall", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventTownhallSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBetaVirtualEventWebinarSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuDeployment", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesDeployment", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuDeploymentAudienceApplicableContent", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesDeploymentAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuDeploymentAudienceApplicableContentMatchedDevice", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/removeMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuDeploymentAudienceExclusionMemberGraphBPreId", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesDeploymentAudienceExclusionMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/exclusions/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/removeMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuDeploymentAudienceMemberGraphBPreId", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesDeploymentAudienceMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/members/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicy", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudience", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudience", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceApplicableContent", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceApplicableContentMatchedDevice", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceExclusion", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/removeMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceExclusionMember", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceExclusionMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/removeMembers", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/removeMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceExclusionMemberGraphBPreId", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceExclusionMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceMember", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity", @@ -435318,229 +455264,253 @@ "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/removeMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyAudienceMemberGraphBPreId", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesPolicyAudienceMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuPolicyComplianceChange", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesPolicyComplianceChange", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProduct", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProduct", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductEdition", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductEdition", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductKnownIssue", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductKnownIssue", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductKnownIssueOriginatingKnowledgeBaseArticle", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductKnownIssueOriginatingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductKnownIssueResolvingKnowledgeBaseArticle", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductKnownIssueResolvingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductRevision", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductRevision", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductRevisionCatalogEntry", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductRevisionCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuProductRevisionKnowledgeBaseArticle", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesProductRevisionKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuResourceConnection", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesResourceConnection", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuUpdatableAsset", + "Method": "DELETE", "Command": "Remove-MgBetaWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembers", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuUpdatableAssetMember", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesUpdatableAssetMember", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembers", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembers?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembersById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Remove-MgBetaWuUpdatableAssetMemberGraphBPreId", + "Method": "POST", "Command": "Remove-MgBetaWindowsUpdatesUpdatableAssetMemberById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}/removeMembersById", + "ApiVersion": "beta", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-removemembersbyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBookingBusiness", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessAppointment", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -435575,33 +455545,35 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessAppointment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessCustomer", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomerBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -435636,19 +455608,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -435675,19 +455648,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessCustomQuestion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -435706,19 +455680,20 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessService", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMemberBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMemberBase-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -435737,47 +455712,50 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Remove-MgBookingBusinessStaffMember", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-delete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgChatInstalledApp", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -435836,33 +455814,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgChatInstalledApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgChatMember", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChatMember.ReadWrite", @@ -435889,47 +455869,50 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgChatMember", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgChatPinnedMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -435948,19 +455931,20 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Remove-MgChatPinnedMessage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgChatTab", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForChat", @@ -436011,19 +455995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgChatTab", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgCommunicationCall", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -436042,19 +456027,20 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Remove-MgCommunicationCall", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -436073,47 +456059,50 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Remove-MgCommunicationCallAudioRoutingGroup", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgCommunicationCallParticipant", + "ApiReferenceLink": null, "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -436132,159 +456121,170 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Remove-MgCommunicationCallParticipant", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/{orgContact-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/{contract-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgContract", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -436303,33 +456303,35 @@ "IsLeastPrivilege": true } ], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtAndroidManagedAppProtection", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436348,19 +456350,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436379,33 +456382,35 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtDefaultManagedAppProtection", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436424,19 +456429,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementDefaultManagedAppProtection", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436455,47 +456461,50 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementDefaultManagedAppProtectionApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtiOSManagedAppProtection", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436514,19 +456523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtectionApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436545,89 +456555,95 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtectionAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppPolicy", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppRegistration", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppRegistrationOperation", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436646,131 +456662,140 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedAppStatus", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBook", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBookAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBookDeviceState", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBookInstallSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBookUserStateSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436789,19 +456814,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436820,19 +456846,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -436851,859 +456878,920 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppCategory", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfiguration", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437722,19 +457810,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437753,33 +457842,35 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Remove-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "DELETE", "Command": "Remove-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Remove-MgDeviceAppMgtVppToken", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementVppToken", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -437798,19 +457889,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementVppToken", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437829,19 +457921,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437860,19 +457953,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437891,19 +457985,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": null + }, + { + "CommandAlias": "Remove-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "DELETE", + "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -437922,74 +458017,79 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Remove-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0", + "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-delete?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/applePushNotificationCertificate", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438008,32 +458108,34 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementComplianceManagementPartner", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/conditionalAccessSettings", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -438052,19 +458154,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementDetectedApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -438083,297 +458186,318 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementDeviceCategory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438392,19 +458516,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438423,19 +458548,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Remove-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438454,47 +458580,50 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementExchangeConnector", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -438513,133 +458642,142 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementManagedDevice", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgDeviceManagementManagedDeviceUserFromSharedAppleDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -438658,19 +458796,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438689,47 +458828,50 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438748,19 +458890,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementPartner", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -438779,32 +458922,34 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/reports", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -438823,19 +458968,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementResourceOperation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -438854,19 +459000,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRoleAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -438885,19 +459032,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRoleDefinition", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -438916,89 +459064,95 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Remove-MgDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439017,19 +459171,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439048,19 +459203,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439079,19 +459235,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439110,19 +459267,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439141,19 +459299,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439172,19 +459331,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439203,19 +459363,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439234,46 +459395,49 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439292,47 +459456,50 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticBaseline", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439351,19 +459518,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439382,19 +459550,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439413,19 +459582,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439444,19 +459614,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439475,19 +459646,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439506,19 +459678,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439536,33 +459709,35 @@ "PermissionType": "Application", "IsLeastPrivilege": false } - ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticModelScore", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + ], + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439581,32 +459756,34 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticScoreHistory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439625,19 +459802,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439656,19 +459834,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -439687,159 +459866,170 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -439858,19 +460048,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementWindowsMalwareInformation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -439889,215 +460080,185 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Remove-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredOwners/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDeviceRegisteredOwnerByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, + "CommandAlias": "Remove-MgDeviceRegisteredOwnerByRef", "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", "Command": "Remove-MgDeviceRegisteredOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredOwners/{directoryObject-id}/$ref", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/devices/{device-id}/registeredUsers/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDeviceRegisteredUserByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Remove-MgDeviceRegisteredUserByRef", + "Method": "DELETE", "Command": "Remove-MgDeviceRegisteredUserDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/registeredUsers/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnitExtension", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDirectoryAdministrativeUnitMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Remove-MgDirectoryAdministrativeUnitMemberByRef", + "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnitMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/attributeSets/{attributeSet-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryDeletedItem", + "ApiReferenceLink": null, + "Uri": "/directory/deletedItems/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDirectoryFederationConfiguration", + "ApiReferenceLink": null, "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Domain.ReadWrite.All", @@ -440116,229 +460277,230 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDirectoryFederationConfiguration", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryObject", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-1.0", + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-delete?view=graph-rest-1.0" + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryRoleByRoleTemplateId", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/directoryRoles/{directoryRole-id}/members/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgDirectoryRoleMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": "Remove-MgDirectoryRoleMemberByRef", + "Method": "DELETE", "Command": "Remove-MgDirectoryRoleMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-1.0", + "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-delete?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -440365,145 +460527,155 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Remove-MgDriveItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -440530,481 +460702,515 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Remove-MgDriveItemPermission", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441023,19 +461229,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441054,33 +461261,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentCategory", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentCategoryByRef", + "CommandAlias": "Remove-MgEducationClassAssignmentCategoryByRef", + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441099,33 +461293,35 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentCategoryEducationCategoryByRef", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentDefault", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441144,19 +461340,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentResource", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441175,19 +461372,20 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentRubric", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441206,75 +461404,80 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentRubricByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441293,270 +461496,278 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationClassAssignmentSubmissionResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassAssignmentSubmissionSubmittedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/members/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationClassMemberByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/members/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationClassMemberByRef", + "Method": "DELETE", "Command": "Remove-MgEducationClassMemberEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/members/{educationUser-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/teachers/$ref", - "Permissions": [], "Module": "Education", - "Command": "Remove-MgEducationClassTeacherByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/teachers/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationClassTeacherByRef", + "Method": "DELETE", "Command": "Remove-MgEducationClassTeacherEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/teachers/{educationUser-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMe", + "ApiReferenceLink": null, + "Uri": "/education/me", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationMeAssignmentCategoryByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationMeAssignmentCategoryByRef", + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -441575,470 +461786,450 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Remove-MgEducationMeRubric", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationSchool", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/classes/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationSchoolClassByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/classes/{educationClass-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationSchoolClassByRef", + "Method": "DELETE", "Command": "Remove-MgEducationSchoolClassEducationClassByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/classes/{educationClass-id}/$ref", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/schools/{educationSchool-id}/users/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationSchoolUserByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/schools/{educationSchool-id}/users/{educationUser-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationSchoolUserByRef", + "Method": "DELETE", "Command": "Remove-MgEducationSchoolUserEducationUserByRef", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/users/{educationUser-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/$ref", - "Permissions": [], - "Module": "Education", - "Command": "Remove-MgEducationUserAssignmentCategoryByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": "Remove-MgEducationUserAssignmentCategoryByRef", + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentCategoryEducationCategoryByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/categories/{educationCategory-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleAccessPackageByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleAccessPackages/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageIncompatibleGroupByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/incompatibleGroups/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentPolicyQuestion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442047,78 +462238,83 @@ "DeleteViaIdentity1", "DeleteViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442127,358 +462323,353 @@ "DeleteViaIdentity1", "DeleteViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementConnectedOrganization", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/$ref", - "Permissions": [], - "Module": "Identity.Governance", - "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorByRef", + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/externalSponsors/{directoryObject-id}/$ref", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/$ref", - "Permissions": [], - "Module": "Identity.Governance", - "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorByRef", + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}/internalSponsors/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442487,78 +462678,83 @@ "DeleteViaIdentity1", "DeleteViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -442567,481 +462763,523 @@ "DeleteViaIdentity1", "DeleteViaIdentity2" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgEntitlementManagementResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -443060,19 +463298,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnection", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -443091,19 +463330,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnectionGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -443122,19 +463362,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnectionGroupMember", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgExternalConnectionItem", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -443153,117 +463394,110 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgExternalConnectionItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroup", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0", + "Uri": "/groups/{group-id}", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/acceptedSenders/$ref", - "Permissions": [], - "Module": "Groups", - "Command": "Remove-MgGroupAcceptedSenderByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Groups", + "CommandAlias": "Remove-MgGroupAcceptedSenderByRef", + "Method": "DELETE", "Command": "Remove-MgGroupAcceptedSenderDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/acceptedSenders/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0", + "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-delete?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupCalendarEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -443282,33 +463516,35 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Remove-MgGroupCalendarEvent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupConversation", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/conversations/{conversation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -443327,19 +463563,20 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupConversation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -443358,691 +463595,740 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupConversationThread", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgGroupDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgGroupDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -444061,149 +464347,144 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Remove-MgGroupEvent", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupEventAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/removeFavorite", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgGroupFavorite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/removeFavorite", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-removefavorite?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgGroupFromLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-removegroup?view=graph-rest-1.0", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}/removeGroup", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-removegroup?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-1.0", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-delete?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/members/$ref", - "Permissions": [], - "Module": "Groups", - "Command": "Remove-MgGroupMemberByRef", + "CommandAlias": "Remove-MgGroupMemberByRef", + "Method": "DELETE", + "Command": "Remove-MgGroupMemberDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/members/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/members/{directoryObject-id}/$ref", + "Module": "Groups", "Permissions": [ { "Name": "GroupMember.ReadWrite.All", @@ -444230,33 +464511,35 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupMemberDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupOnenotePage", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -444275,61 +464558,50 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Remove-MgGroupOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/owners/$ref", - "Permissions": [], - "Module": "Groups", - "Command": "Remove-MgGroupOwnerByRef", + "CommandAlias": "Remove-MgGroupOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgGroupOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/owners/{directoryObject-id}/$ref", + "Module": "Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -444348,33 +464620,35 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupPhoto", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "ProfilePhoto.ReadWrite.All", @@ -444393,61 +464667,52 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupPhoto", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupPlannerPlanDetail", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/rejectedSenders/$ref", - "Permissions": [], - "Module": "Groups", - "Command": "Remove-MgGroupRejectedSenderByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Groups", + "CommandAlias": "Remove-MgGroupRejectedSenderByRef", + "Method": "DELETE", "Command": "Remove-MgGroupRejectedSenderDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/rejectedSenders/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/{groupSetting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "Delete1", + "DeleteViaIdentity", + "DeleteViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -444466,780 +464731,824 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupSetting", - "Variants": [ - "Delete", - "Delete1", - "DeleteViaIdentity", - "DeleteViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSettingTemplateGroupSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/remove", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgGroupSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/remove", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445250,16 +465559,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445270,128 +465580,136 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445402,16 +465720,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445422,48 +465741,51 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445474,16 +465796,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -445494,635 +465817,687 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -446141,271 +466516,275 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Remove-MgGroupThread", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupThreadPostAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupThreadPostInReplyToAttachment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": "Remove-MgIdentityB2XUserFlowIdentityProviderByRef", + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowIdentityProviderBaseByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/{identityProviderBase-id}/$ref", "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userFlowIdentityProviders/$ref", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "Remove-MgIdentityB2XUserFlowIdentityProviderByRef", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -446424,19 +466803,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgIdentityConditionalAccessNamedLocation", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -446455,620 +466835,664 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgIdentityConditionalAccessPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItem", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/identityProviders/{identityProviderBase-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-1.0", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -447087,33 +467511,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgOauth2PermissionGrant", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-delete?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/organization/{organization-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgOrganization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgOrganizationBranding", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -447132,19 +467558,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgOrganizationBranding", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgOrganizationBrandingLocalization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -447163,75 +467590,80 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Remove-MgOrganizationBrandingLocalization", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgOrganizationCertificateBasedAuthConfiguration", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/certificateBasedAuthConfiguration/{certificateBasedAuthConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPlace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -447258,19 +467690,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Remove-MgPlannerBucket", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -447297,19 +467730,20 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Remove-MgPlannerPlan", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -447336,61 +467770,65 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Remove-MgPlannerTask", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447409,32 +467847,34 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/adminConsentRequestPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447453,59 +467893,63 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyAppManagementPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authenticationFlowsPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -447524,46 +467968,49 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyAuthenticationStrengthPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/authorizationPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447582,167 +468029,164 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyClaimMappingPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/default", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/defaultAppManagementPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/$ref", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyToByRef", + "CommandAlias": "Remove-MgPolicyFeatureRolloutPolicyApplyToByRef", + "Method": "DELETE", + "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}/appliesTo/{directoryObject-id}/$ref", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef", + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447761,130 +468205,139 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447903,19 +468356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyTokenIssuancePolicy", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -447934,103 +468388,110 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgPolicyTokenLifetimePolicy", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/operations/{printOperation-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintPrinter", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintPrinterJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgPrintPrinterTaskTrigger", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -448049,492 +468510,527 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Remove-MgPrintPrinterTaskTrigger", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/print/services/{printService-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShareAllowedGroupByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedGroups/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShareAllowedUserByRef", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShareJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -448553,116 +469049,124 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Remove-MgRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "EntitlementManagement.ReadWrite.All", @@ -448681,145 +469185,155 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-1.0", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -448838,19 +469352,20 @@ "IsLeastPrivilege": false } ], - "Module": "SchemaExtensions", - "Command": "Remove-MgSchemaExtension", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-delete?view=graph-rest-1.0" - }, - { - "Uri": "/search/acronyms/{acronym-id}", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -448869,19 +469384,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgSearchAcronym", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks/{bookmark-id}", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -448900,19 +469416,20 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgSearchBookmark", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/search/qnas/{qna-id}", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -448931,215 +469448,230 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Remove-MgSearchQna", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/alerts_v2/{alert-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -449158,33 +469690,39 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Remove-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/removeHold", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "Remove1", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentity1", + "RemoveViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -449203,79 +469741,84 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianHold", - "Variants": [ - "Remove", - "Remove1", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentity1", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-removehold?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/removeHold", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "Remove1", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentity1", + "RemoveViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -449294,65 +469837,65 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Remove-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceHold", - "Variants": [ - "Remove", - "Remove1", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentity1", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-removehold?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -449371,47 +469914,50 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Remove-MgSecurityCaseEdiscoveryCaseSearch", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -449430,631 +469976,676 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Remove-MgSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/security/incidents/{incident-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/secureScores/{secureScore-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -450081,75 +470672,65 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipal", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals(appId='{appId}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-delete?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/$ref", - "Permissions": [], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalClaimMappingPolicyByRef", + "CommandAlias": "Remove-MgServicePrincipalClaimMappingPolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/{claimsMappingPolicy-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/claimsMappingPolicies/{claimsMappingPolicy-id}/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -450192,61 +470773,50 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/$ref", - "Permissions": [], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "CommandAlias": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyByRef", + "Method": "DELETE", + "Command": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Policy.Read.All", @@ -450289,19 +470859,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgServicePrincipalKey", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/removeKey", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -450328,35 +470901,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalKey", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removekey?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/$ref", - "Permissions": [], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalOwnerByRef", + "CommandAlias": "Remove-MgServicePrincipalOwnerByRef", + "Method": "DELETE", + "Command": "Remove-MgServicePrincipalOwnerDirectoryObjectByRef", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/$ref", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/owners/{directoryObject-id}/$ref", + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -450383,19 +470941,22 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalOwnerDirectoryObjectByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Remove-MgServicePrincipalPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/removePassword", + "ApiVersion": "v1.0", + "Variants": [ + "Remove", + "RemoveExpanded", + "RemoveViaIdentity", + "RemoveViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -450420,79 +470981,82 @@ "IsAdmin": false, "PermissionType": "Application", "IsLeastPrivilege": false - } - ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalPassword", - "Variants": [ - "Remove", - "RemoveExpanded", - "RemoveViaIdentity", - "RemoveViaIdentityExpanded" + } ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-removepassword?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -450511,33 +471075,35 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -450564,339 +471130,362 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Remove-MgServicePrincipalSynchronizationJobSchema", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -450915,19 +471504,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteColumn", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -450946,19 +471536,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteContentType", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -450977,95 +471568,101 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteContentTypeColumn", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -451084,19 +471681,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListColumn", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -451115,19 +471713,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListContentType", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -451146,47 +471745,50 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListContentTypeColumn", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -451221,117 +471823,125 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Remove-MgSiteListItemDocumentSetVersion", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgSiteOnenotePage", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -451350,238 +471960,246 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Remove-MgSiteOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451592,16 +472210,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451612,128 +472231,136 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451744,16 +472371,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451764,48 +472392,51 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451816,16 +472447,17 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", @@ -451836,215 +472468,237 @@ "DeleteViaIdentity2", "DeleteViaIdentity3" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscribedSkus/{subscribedSku-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-1.0", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-delete?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamChannel", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Channel.Delete.Group", @@ -452079,75 +472733,80 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamChannel", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0" - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], "Module": "Teams", + "Permissions": [], + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForTeam", @@ -452222,19 +472881,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamChannelTab", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamInstalledApp", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -452301,173 +472961,185 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamInstalledApp", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/removeEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgTeamPrimaryChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/removeEmail", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleOpenShift", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452486,33 +473158,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleOpenShift", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452531,19 +473205,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleSchedulingGroup", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452570,33 +473245,35 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleShift", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleTimeOff", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452615,19 +473292,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOff", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452646,19 +473324,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOffReason", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -452677,19 +473356,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgTeamScheduleTimeOffRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamTag", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -452708,19 +473388,20 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Remove-MgTeamTag", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -452739,298 +473420,319 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Remove-MgTeamTagMember", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/removeEmail", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgTeamworkDeletedTeamChannelEmail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/removeEmail", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/channel-removeemail?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/teamsAppSettings", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkTeamAppSetting", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "v1.0", "Variants": [ "Delete" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-delete?view=graph-rest-1.0", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -453073,61 +473775,65 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Remove-MgUser", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-user-delete?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -453146,19 +473852,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationEmailMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationFido2Method", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/fido2Methods/{fido2AuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -453177,19 +473884,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationFido2Method", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/microsoftAuthenticatorMethods/{microsoftAuthenticatorAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -453208,33 +473916,35 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationMicrosoftAuthenticatorMethod", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -453253,19 +473963,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationPhoneMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/softwareOathMethods/{softwareOathAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -453284,19 +473995,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationSoftwareOathMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/temporaryAccessPassMethods/{temporaryAccessPassAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -453315,19 +474027,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationTemporaryAccessPassMethod", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserAuthenticationWindowsHelloForBusinessMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/windowsHelloForBusinessMethods/{windowsHelloForBusinessAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite", @@ -453346,1327 +474059,1421 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Remove-MgUserAuthenticationWindowsHelloForBusinessMethod", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "Delete1", "DeleteViaIdentity", "DeleteViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatInstalledApp", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgUserDriveItemPermanent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + ], + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permanentDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgUserDriveRootPermanent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permanentDelete", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserEventAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserEventInstanceAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/followedSites/remove", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgUserFollowedSite", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/followedSites/remove", + "ApiVersion": "v1.0", "Variants": [ "Remove", "RemoveExpanded", "RemoveViaIdentity", "RemoveViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/site-unfollow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Remove-MgUserManagedDeviceUserFromSharedAppleDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deleteUserFromSharedAppleDevice", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteExpanded", "DeleteViaIdentity", "DeleteViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-deleteuserfromsharedappledevice?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserManagerByRef", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -454685,75 +475492,80 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Remove-MgUserManagerByRef", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/attachments/{attachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserOnenotePage", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Notes", "Permissions": [ { "Name": "Notes.ReadWrite", @@ -454772,47 +475584,50 @@ "IsLeastPrivilege": false } ], - "Module": "Notes", - "Command": "Remove-MgUserOnenotePage", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -454831,89 +475646,95 @@ "IsLeastPrivilege": true } ], - "Module": "CloudCommunications", - "Command": "Remove-MgUserOnlineMeeting", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserPhoto", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -454940,131 +475761,140 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Remove-MgUserPhoto", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/presence", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserPresence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/shiftPreferences", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserSettingShiftPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTeamworkInstalledApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/teamwork/installedApps/{userScopeTeamsAppInstallation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForUser", @@ -455163,19 +475993,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Remove-MgUserTeamworkInstalledApp", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTodoList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "Module": "Users", "Permissions": [ { "Name": "Tasks.Read", @@ -455202,33 +476033,35 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Remove-MgUserTodoList", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTodoListTask", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -455247,19 +476080,20 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Remove-MgUserTodoListTask", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTodoListTaskAttachment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -455278,33 +476112,35 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Remove-MgUserTodoListTaskAttachment", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -455323,33 +476159,35 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Remove-MgUserTodoListTaskChecklistItem", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "DELETE", + "Command": "Remove-MgUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Delete", + "DeleteViaIdentity" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -455368,329 +476206,351 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Remove-MgUserTodoListTaskLinkedResource", - "Variants": [ - "Delete", - "DeleteViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete1", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "DELETE", "Command": "Remove-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Delete", "DeleteViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "DELETE", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaCommunicationCallScreenSharingRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/changeSettings", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Rename-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "POST", "Command": "Rename-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/changeSettings", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring/alertRecords/changeAlertRecordsPortalNotificationAsSent", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaDeviceManagementMonitoringAlertRecordPortalNotificationAsSent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRecords/changeAlertRecordsPortalNotificationAsSent", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/rename", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/rename", + "ApiVersion": "beta", "Variants": [ "Rename", "RenameExpanded", "RenameViaIdentity", "RenameViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/changeUserAccountType", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaDeviceManagementVirtualEndpointCloudPcUserAccountType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/changeUserAccountType", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/changeDeploymentStatus", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/changeDeploymentStatus", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionDeploymentStatus" }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/rename", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/rename", + "ApiVersion": "beta", "Variants": [ "Rename", "RenameExpanded", "RenameViaIdentity", "RenameViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/changeUserAccountType", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgBetaUserCloudPcUserAccountType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/changeUserAccountType", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-changeuseraccounttype?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgCommunicationCallScreenSharingRole", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/changeScreenSharingRole", + "ApiVersion": "v1.0", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-changescreensharingrole?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/rename", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Rename-MgDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/rename", + "ApiVersion": "v1.0", "Variants": [ "Rename", "RenameExpanded", "RenameViaIdentity", "RenameViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-rename?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkSettings/requestSignupUrl", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Request-MgBetaDeviceManagementAndroidForWorkSettingSignupUrl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings/requestSignupUrl", + "ApiVersion": "beta", "Variants": [ "Request", "RequestExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/requestSignupUrl", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Request-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingSignupUrl", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/requestSignupUrl", + "ApiVersion": "beta", "Variants": [ "Request", "RequestExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Request-MgBetaDeviceManagementComanagedDeviceRemoteAssistance", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", + "Variants": [ + "Request", + "RequestViaIdentity" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -455709,19 +476569,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Request-MgBetaDeviceManagementComanagedDeviceRemoteAssistance", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", "Variants": [ "Request", "RequestViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -455740,60 +476601,64 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Request-MgBetaDeviceManagementManagedDeviceRemoteAssistance", - "Variants": [ - "Request", - "RequestViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/requestUpgrade", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Request-MgBetaDeviceManagementMicrosoftTunnelSiteUpgrade", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/requestUpgrade", + "ApiVersion": "beta", "Variants": [ "Request", "RequestViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedApproval/myRequests", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "GET", "Command": "Request-MgBetaPrivilegedApprovalMy", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/myRequests", + "ApiVersion": "beta", "Variants": [ "Request" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", - "Method": "GET", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Request-MgBetaUserManagedDeviceRemoteAssistance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "beta", "Variants": [ "Request", "RequestViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0", "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "v1.0", + "Variants": [ + "Request", + "RequestViaIdentity" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -455812,33 +476677,35 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Request-MgDeviceManagementManagedDeviceRemoteAssistance", - "Variants": [ - "Request", - "RequestViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Request-MgUserManagedDeviceRemoteAssistance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/requestRemoteAssistance", + "ApiVersion": "v1.0", "Variants": [ "Request", "RequestViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-requestremoteassistance?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Reset-MgBetaAccessReviewDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta", "Uri": "/accessReviews/{accessReview-id}/resetDecisions", + "ApiVersion": "beta", + "Variants": [ + "Reset", + "ResetViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -455857,75 +476724,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Reset-MgBetaAccessReviewDecision", - "Variants": [ - "Reset", - "ResetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/resetDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/resetDecisions", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-reset?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/settings/resetToDefault", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaComplianceEdiscoveryCaseSettingToDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-casesettings-resettodefault?view=graph-rest-beta", + "Uri": "/compliance/ediscovery/cases/{case-id}/settings/resetToDefault", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/ediscovery-casesettings-resettodefault?view=graph-rest-beta" + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resetPasscode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaDeviceManagementComanagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaDeviceManagementManagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Reset-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-reset?view=graph-rest-beta", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/reset", + "ApiVersion": "beta", + "Variants": [ + "Reset", + "ResetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.ReadWrite", @@ -455944,439 +476816,471 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Reset-MgBetaEducationSynchronizationProfile", - "Variants": [ - "Reset", - "ResetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-reset?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/groups/{group-id}/resetUnseenCount", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaGroupUnseenCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-beta", + "Uri": "/groups/{group-id}/resetUnseenCount", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/resetDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/resetDecisions", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/resetDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/resetDecisions", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/default/resetToSystemDefault", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyDefaultToSystemDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-beta", + "Uri": "/policies/crossTenantAccessPolicy/default/resetToSystemDefault", + "ApiVersion": "beta", "Variants": [ "Reset" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization/resetToDefaultSettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronizationToDefaultSetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationidentitysyncpolicytemplate-resettodefaultsettings?view=graph-rest-beta", + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization/resetToDefaultSettings", + "ApiVersion": "beta", "Variants": [ "Reset" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationidentitysyncpolicytemplate-resettodefaultsettings?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration/resetToDefaultSettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfigurationToDefaultSetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-resettodefaultsettings?view=graph-rest-beta", + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration/resetToDefaultSettings", + "ApiVersion": "beta", "Variants": [ "Reset" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-resettodefaultsettings?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/resetDefaults", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaPrintPrinterDefault", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/resetDefaults", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings/resetToDefault", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaSecurityCaseEdiscoveryCaseSettingToDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings/resetToDefault", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}/resetTenantOnboardingStatus", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaTenantRelationshipManagedTenantOnboardingStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-resettenantonboardingstatus?view=graph-rest-beta", + "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}/resetTenantOnboardingStatus", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenant-resettenantonboardingstatus?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaUserAuthenticationMethodPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-beta", + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetExpanded", "ResetViaIdentity", "ResetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaUserManagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/resetDecisions", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgBetaUserPendingAccessReviewInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/resetDecisions", + "ApiVersion": "beta", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgDeviceManagementManagedDevicePasscode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/resetUnseenCount", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgGroupUnseenCount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/resetUnseenCount", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-resetunseencount?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/resetDecisions", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/resetDecisions", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-resetdecisions?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/default/resetToSystemDefault", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgPolicyCrossTenantAccessPolicyDefaultToSystemDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-1.0", + "Uri": "/policies/crossTenantAccessPolicy/default/resetToSystemDefault", + "ApiVersion": "v1.0", "Variants": [ "Reset" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/crosstenantaccesspolicyconfigurationdefault-resettosystemdefault?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings/resetToDefault", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgSecurityCaseEdiscoveryCaseSettingToDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-1.0", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings/resetToDefault", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycasesettings-resettodefault?view=graph-rest-1.0" + "Module": "Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgUserAuthenticationMethodPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-1.0", + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}/resetPassword", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetExpanded", "ResetViaIdentity", "ResetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationmethod-resetpassword?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Reset-MgUserManagedDevicePasscode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resetPasscode", + "ApiVersion": "v1.0", "Variants": [ "Reset", "ResetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-resetpasscode?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resizeCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Resize-MgBetaDeviceManagementComanagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resizeCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Resize-MgBetaDeviceManagementManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/resize", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Resize-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/resize", + "ApiVersion": "beta", "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/resize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Resize-MgBetaUserCloudPc", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/resize", + "ApiVersion": "beta", "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resizeCloudPc", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Resize-MgBetaUserManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/resizeCloudPc", + "ApiVersion": "beta", "Variants": [ "Resize", "ResizeExpanded", "ResizeViaIdentity", "ResizeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-resizecloudpc?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "v1.0", "Variants": [ "Restart", "RestartExpanded", "RestartViaIdentity", "RestartViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "beta", "Variants": [ "Restart", "RestartExpanded", "RestartViaIdentity", "RestartViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rebootNow", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaDeviceManagementComanagedDeviceNow", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaDeviceManagementManagedDeviceNow", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reboot", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reboot", + "ApiVersion": "beta", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restart-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "beta", + "Variants": [ + "Restart", + "RestartExpanded", + "RestartViaIdentity", + "RestartViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -456395,91 +477299,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Restart-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Restart", - "RestartExpanded", - "RestartViaIdentity", - "RestartViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/restart", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaTeamworkDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-restart?view=graph-rest-beta", + "Uri": "/teamwork/devices/{teamworkDevice-id}/restart", + "ApiVersion": "beta", "Variants": [ "Restart", "RestartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-restart?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/reboot", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/reboot", + "ApiVersion": "beta", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgBetaUserManagedDeviceNow", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "beta", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgDeviceManagementManagedDeviceNow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "v1.0", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reboot", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/reboot", + "ApiVersion": "v1.0", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-reboot?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restart-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/restart", + "ApiVersion": "v1.0", + "Variants": [ + "Restart", + "RestartExpanded", + "RestartViaIdentity", + "RestartViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -456498,169 +477408,178 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Restart-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Restart", - "RestartExpanded", - "RestartViaIdentity", - "RestartViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-restart?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restart-MgUserManagedDeviceNow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/rebootNow", + "ApiVersion": "v1.0", "Variants": [ "Reboot", "RebootViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-rebootnow?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/restoreCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDeviceManagementComanagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/restoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/recoverPasscode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDeviceManagementComanagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Variants": [ "Recover", "RecoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/restoreCloudPc", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDeviceManagementManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/restoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDeviceManagementManagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Variants": [ "Recover", "RecoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/restore", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/restore", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDirectoryDeletedItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-beta", + "Uri": "/directory/deletedItems/{directoryObject-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgBetaDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -456687,305 +477606,326 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Restore-MgBetaDriveItemVersion", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/restore", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/restore", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgBetaPrintPrinterFactoryDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-beta", "Uri": "/print/printers/{printer-id}/restoreFactoryDefaults", + "ApiVersion": "beta", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -457004,51 +477944,54 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Restore-MgBetaPrintPrinterFactoryDefault", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "Restore1", "RestoreViaIdentity", "RestoreViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "Restore1", "RestoreViaIdentity", "RestoreViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -457083,19 +478026,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Restore-MgBetaSiteListItemDocumentSetVersion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -457122,297 +478066,317 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Restore-MgBetaSiteListItemVersion", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/restoreCloudPc", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserManagedDeviceCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/restoreCloudPc", + "ApiVersion": "beta", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-restorecloudpc?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgBetaUserManagedDevicePasscode", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "beta", "Variants": [ "Recover", "RecoverViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDeviceManagementManagedDevicePasscode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "v1.0", "Variants": [ "Recover", "RecoverViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/restore", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-restore?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/{directoryObject-id}/restore", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDirectoryDeletedItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/{directoryObject-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveItemListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -457439,319 +478403,341 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Restore-MgDriveItemVersion", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveRootListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupSettingTemplate", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directory-deleteditems-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgGroupSiteListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/restore", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/restore", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflow", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-workflow-restore?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgPrintPrinterFactoryDefault", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-1.0", "Uri": "/print/printers/{printer-id}/restoreFactoryDefaults", + "ApiVersion": "v1.0", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -457770,51 +478756,54 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Restore-MgPrintPrinterFactoryDefault", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printer-restorefactorydefaults?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "Restore1", "RestoreViaIdentity", "RestoreViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgShareListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "Restore1", "RestoreViaIdentity", "RestoreViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", + "Variants": [ + "Restore", + "RestoreViaIdentity" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -457849,19 +478838,20 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Restore-MgSiteListItemDocumentSetVersion", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Restore-MgSiteListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "Module": "Sites", "Permissions": [ { "Name": "Sites.ReadWrite.All", @@ -457888,177 +478878,189 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Restore-MgSiteListItemVersion", - "Variants": [ - "Restore", - "RestoreViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/restore", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveItemListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/restore", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreExpanded", "RestoreViaIdentity", "RestoreViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/restore", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/documentsetversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveRootListItemVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/listitemversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserDriveRootVersion", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/restoreVersion", + "ApiVersion": "v1.0", "Variants": [ "Restore", "RestoreViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitemversion-restore?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Restore-MgUserManagedDevicePasscode", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/recoverPasscode", + "ApiVersion": "v1.0", "Variants": [ "Recover", "RecoverViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-recoverpasscode?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Resume-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-resume?view=graph-rest-beta", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/resume", + "ApiVersion": "beta", + "Variants": [ + "Resume", + "ResumeViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.ReadWrite", @@ -458077,227 +479079,243 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Resume-MgBetaEducationSynchronizationProfile", - "Variants": [ - "Resume", - "ResumeViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-resume?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "beta", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Resume-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0", + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/resume", + "ApiVersion": "v1.0", "Variants": [ "Resume", "ResumeExpanded", "ResumeViaIdentity", "ResumeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identitygovernance-taskprocessingresult-resume?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Revoke-MgBetaDeviceAppMgtVppTokenLicense", + "Method": "POST", + "Command": "Revoke-MgBetaDeviceAppManagementVppTokenLicense", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/revokeLicenses", + "ApiVersion": "beta", + "Variants": [ + "Revoke", + "RevokeExpanded", + "RevokeViaIdentity", + "RevokeViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -458316,93 +479334,99 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Revoke-MgBetaDeviceAppManagementVppTokenLicense", - "Variants": [ - "Revoke", - "RevokeExpanded", - "RevokeViaIdentity", - "RevokeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/revokeToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfileToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}/revokeToken", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/revokeToken", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementAndroidForWorkEnrollmentProfileToken", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}/revokeToken", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/revokeAppleVppLicenses", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementComanagedDeviceAppleVppLicense", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/revoke", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementElevationRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/elevationRequests/{privilegeManagementElevationRequest-id}/revoke", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegeManagementElevationRequest" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDeviceManagementManagedDeviceAppleVppLicense", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Revoke-MgBetaDriveItemPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", + "Variants": [ + "Revoke", + "RevokeExpanded", + "RevokeViaIdentity", + "RevokeViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -458429,163 +479453,171 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Revoke-MgBetaDriveItemPermissionGrant", - "Variants": [ - "Revoke", - "RevokeExpanded", - "RevokeViaIdentity", - "RevokeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaDriveRootPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaGroupDriveItemPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaGroupDriveRootPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaGroupSitePermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/shares/{sharedDriveItem-id}/permission/revokeGrants", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaSharePermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/permission/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaSitePermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/sites/{site-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaUserDriveItemPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaUserDriveRootPermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}/revokeGrants", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeExpanded", "RevokeViaIdentity", "RevokeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/permission-revokegrants?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Revoke-MgBetaUserManagedDeviceAppleVppLicense", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/revokeAppleVppLicenses", + "ApiVersion": "beta", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Revoke-MgBetaUserSignInSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-beta", "Uri": "/users/{user-id}/revokeSignInSessions", + "ApiVersion": "beta", + "Variants": [ + "Revoke", + "RevokeViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.RevokeSessions.All", @@ -458612,19 +479644,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Revoke-MgBetaUserSignInSession", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Revoke-MgUserSignInSession", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-1.0", + "Uri": "/users/{user-id}/revokeSignInSessions", + "ApiVersion": "v1.0", "Variants": [ "Revoke", "RevokeViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/revokeSignInSessions", + "Module": "Users.Actions", "Permissions": [ { "Name": "User.RevokeSessions.All", @@ -458651,19 +479684,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Revoke-MgUserSignInSession", - "Variants": [ - "Revoke", - "RevokeViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-revokesigninsessions?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Search-MgBetaDeviceManagementImportedDeviceIdentityExistingIdentity", + "ApiReferenceLink": null, "Uri": "/deviceManagement/importedDeviceIdentities/searchExistingIdentities", + "ApiVersion": "beta", + "Variants": [ + "Search", + "SearchExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.Read.All", @@ -458682,285 +479716,305 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Search-MgBetaDeviceManagementImportedDeviceIdentityExistingIdentity", - "Variants": [ - "Search", - "SearchExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "Uri": "/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + ], + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgBetaUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "beta", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgGroupDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgGroupDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgGroupDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/search(q='{q}')", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgUserDrive", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgUserDriveItem", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/search(q='{q}')", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Search-MgUserDriveRoot", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/root/search(q='{q}')", + "ApiVersion": "v1.0", "Variants": [ "Search", "SearchViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/driveitem-search?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/sendReminder", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaAccessReviewInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/sendReminder", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaAccessReviewReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta", "Uri": "/accessReviews/{accessReview-id}/sendReminder", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -458979,19 +480033,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Send-MgBetaAccessReviewReminder", - "Variants": [ - "Send", - "SendViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-sendreminder?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaChatActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta", "Uri": "/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsActivity.Send.Chat", @@ -459010,101 +480067,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Send-MgBetaChatActivityNotification", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/sendDtmfTones", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaCommunicationCallDtmfTone", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/sendDtmfTones", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSendDtmfTonesOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSendDtmfTonesOperation" }, { - "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentReminderSms", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentReminderSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentSms", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingJoinWebUrlVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaCommunicationOnlineMeetingVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaDeviceManagementComanagedDeviceCustomNotificationToCompanyPortal", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -459123,35 +480186,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Send-MgBetaDeviceManagementComanagedDeviceCustomNotificationToCompanyPortal", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/sendCustomNotificationToCompanyPortal", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaDeviceManagementCustomNotificationToCompanyPortal", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaDeviceManagementManagedDeviceCustomNotificationToCompanyPortal", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -459170,91 +480235,97 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Send-MgBetaDeviceManagementManagedDeviceCustomNotificationToCompanyPortal", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaDeviceManagementNotificationMessageTemplateTestMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/send", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaFinancialCompanySalesInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/send", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/send", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaFinancialCompanySalesQuote", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/send", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/sendReminder", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaIdentityGovernanceAccessReviewDecisionInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/sendReminder", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/sendReminder", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/sendReminder", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaTeamActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-beta", "Uri": "/teams/{team-id}/sendActivityNotification", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsActivity.Send.Group", @@ -459273,21 +480344,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Send-MgBetaTeamActivityNotification", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaTeamworkActivityNotificationToRecipient", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-beta", "Uri": "/teamwork/sendActivityNotificationToRecipients", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsActivity.Send.User", @@ -459306,141 +480376,152 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Send-MgBetaTeamworkActivityNotificationToRecipient", - "Variants": [ - "Send", - "SendExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/sendActivityNotification", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserChatActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/sendMail", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserMail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-beta", + "Uri": "/users/{user-id}/sendMail", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/send", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/send", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserManagedDeviceCustomNotificationToCompanyPortal", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/sendCustomNotificationToCompanyPortal", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/send", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta", + "Uri": "/users/{user-id}/messages/{message-id}/send", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentReminderSms", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", + "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentReminderSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentSms", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserOnlineMeetingJoinWebUrlVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", + "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')/sendVirtualAppointmentSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "VirtualAppointmentNotification.Send", @@ -459467,21 +480548,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentReminderSm", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "ApiVersion": "beta", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "VirtualAppointmentNotification.Send", @@ -459508,35 +480590,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Send-MgBetaUserOnlineMeetingVirtualAppointmentSm", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/sendReminder", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgBetaUserPendingAccessReviewInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/sendReminder", + "ApiVersion": "beta", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgBetaUserTeamworkActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-beta", "Uri": "/users/{user-id}/teamwork/sendActivityNotification", + "ApiVersion": "beta", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "TeamsActivity.Send.User", @@ -459555,21 +480639,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Send-MgBetaUserTeamworkActivityNotification", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgChatActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-beta" - }, - { - "Uri": "/chats/{chat-id}/sendActivityNotification", + "Module": "Teams", "Permissions": [ { "Name": "TeamsActivity.Send.Chat", @@ -459588,97 +480673,103 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Send-MgChatActivityNotification", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/sendDtmfTones", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgCommunicationCallDtmfTone", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/sendDtmfTones", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSendDtmfTonesOperation", - "Method": "POST", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSendDtmfTonesOperation" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgCommunicationOnlineMeetingVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgCommunicationOnlineMeetingVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0", + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgDeviceManagementNotificationMessageTemplateTestMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-notificationmessagetemplate-sendtestmessage?view=graph-rest-1.0", + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/sendTestMessage", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-notification-notificationmessagetemplate-sendtestmessage?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/sendReminder", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgIdentityGovernanceAccessReviewDefinitionInstanceReminder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/sendReminder", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-sendreminder?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgTeamActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-1.0", "Uri": "/teams/{team-id}/sendActivityNotification", + "ApiVersion": "v1.0", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsActivity.Send.Group", @@ -459697,21 +480788,20 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Send-MgTeamActivityNotification", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-sendactivitynotification?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgTeamworkActivityNotificationToRecipient", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-1.0", "Uri": "/teamwork/sendActivityNotificationToRecipients", + "ApiVersion": "v1.0", + "Variants": [ + "Send", + "SendExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsActivity.Send.User", @@ -459730,93 +480820,101 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Send-MgTeamworkActivityNotificationToRecipient", - "Variants": [ - "Send", - "SendExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamwork-sendactivitynotificationtorecipients?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/sendActivityNotification", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgUserChatActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/sendActivityNotification", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-sendactivitynotification?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/sendMail", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgUserMail", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-1.0", + "Uri": "/users/{user-id}/sendMail", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-sendmail?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/send", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/send", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgUserMailFolderMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/send", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/send", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Send-MgUserMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0", + "Uri": "/users/{user-id}/messages/{message-id}/send", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/message-send?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgUserOnlineMeetingVirtualAppointmentReminderSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0", "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentReminderSms", + "ApiVersion": "v1.0", + "Variants": [ + "Send", + "SendExpanded", + "SendViaIdentity", + "SendViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "VirtualAppointmentNotification.Send", @@ -459843,21 +480941,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Send-MgUserOnlineMeetingVirtualAppointmentReminderSm", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgUserOnlineMeetingVirtualAppointmentSm", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0", + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentremindersms?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/sendVirtualAppointmentSms", + "Module": "Users.Actions", "Permissions": [ { "Name": "VirtualAppointmentNotification.Send", @@ -459884,21 +480983,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Send-MgUserOnlineMeetingVirtualAppointmentSm", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Send-MgUserTeamworkActivityNotification", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-1.0", + "Uri": "/users/{user-id}/teamwork/sendActivityNotification", + "ApiVersion": "v1.0", "Variants": [ "Send", "SendExpanded", "SendViaIdentity", "SendViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/virtualappointment-sendvirtualappointmentsms?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/teamwork/sendActivityNotification", + "Module": "Users.Actions", "Permissions": [ { "Name": "TeamsActivity.Send.User", @@ -459917,21 +481017,20 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Send-MgUserTeamworkActivityNotification", - "Variants": [ - "Send", - "SendExpanded", - "SendViaIdentity", - "SendViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/userteamwork-sendactivitynotification?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgApplicationLogo", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/logo", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -459950,125 +481049,133 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Set-MgApplicationLogo", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgApplicationSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/secrets", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgApplicationSynchronizationSecret", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/secrets", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "Uri": "/applications/{application-id}/setVerifiedPublisher", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgApplicationVerifiedPublisher", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/setVerifiedPublisher", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/connectorGroup/$ref", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaApplicationConnectorGroupByRef", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/connectorGroup/$ref", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaApplicationLogo", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/logo", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -460087,383 +481194,410 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Set-MgBetaApplicationLogo", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronization", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/secrets", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaApplicationSynchronizationSecret", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/secrets", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "Uri": "/applications/{application-id}/setVerifiedPublisher", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaApplicationVerifiedPublisher", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-beta", + "Uri": "/applications/{application-id}/setVerifiedPublisher", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-setverifiedpublisher?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaChatMessageReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingAlternativeRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingBroadcastRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/broadcastRecording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaCommunicationOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setPresence", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaCommunicationPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta", + "Uri": "/communications/presences/{presence-id}/setPresence", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setStatusMessage", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaCommunicationPresenceStatusMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta", + "Uri": "/communications/presences/{presence-id}/setStatusMessage", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setUserPreferredPresence", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaCommunicationPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta", + "Uri": "/communications/presences/{presence-id}/setUserPreferredPresence", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta" + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtIosLobAppProvisioningConfiguration", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementIosLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtManagedEBook", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtMobileApp", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Set-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "POST", "Command": "Set-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Set-MgBetaDeviceAppMgtWindowsManagedAppProtection", + "Method": "POST", + "Command": "Set-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assign", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -460482,191 +481616,203 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Set-MgBetaDeviceAppManagementWindowsManagedAppProtection", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/setAndroidDeviceOwnerFullyManagedEnrollmentState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingAndroidDeviceOwnerFullyManagedEnrollmentState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/setAndroidDeviceOwnerFullyManagedEnrollmentState", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/setPriority", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfilePriority", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/setPriority", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/setCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementComanagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/setCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/setDeviceName", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementComanagedDeviceName", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/setScheduledActions", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementCompliancePolicyScheduledAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/setScheduledActions", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignJustInTimeConfiguration", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementConfigurationPolicyJust", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignJustInTimeConfiguration", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/setDefaultProfile", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileDefaultProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/setDefaultProfile", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/setScheduledRetireState", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementDeviceCompliancePolicyScheduledRetireState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/setScheduledRetireState", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceComplianceScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceComplianceScripts/{deviceComplianceScript-id}/assign", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -460685,37 +481831,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceComplianceScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceConfiguration", + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceCustomAttributeShellScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScript-id}/assign", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -460734,21 +481882,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceCustomAttributeShellScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -460767,21 +481916,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -460800,21 +481950,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceEnrollmentConfigurationPriority", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assign", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -460833,21 +481984,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceHealthScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assign", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -460866,163 +482018,173 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementDeviceShellScript", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "Uri": "/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementHardwareConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/hardwareConfigurations/{hardwareConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHardwareConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphHardwareConfigurationAssignment" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/setCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementManagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/setCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/setDeviceName", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementManagedDeviceName", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}/setPortalNotificationAsSent", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementMonitoringAlertRecordPortalNotificationAsSent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrecord-setportalnotificationassent?view=graph-rest-beta", + "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}/setPortalNotificationAsSent", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/devicemanagement-alertrecord-setportalnotificationassent?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assign", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -461041,265 +482203,280 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Set-MgBetaDeviceManagementRoleScopeTag", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDeviceUserToDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignResourceAccountToDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityResourceAccountToDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignResourceAccountToDevice", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsDriverUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaDriveItemContent", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -461326,19 +482503,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Set-MgBetaDriveItemContent", + "OutputType": "IMicrosoftGraphDriveItem" + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/contentStream", + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -461365,47 +482543,52 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Set-MgBetaDriveItemContentStream", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaDriveItemSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite.All", @@ -461424,205 +482607,219 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Set-MgBetaDriveItemSensitivityLabel", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -461641,49 +482838,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Set-MgBetaEducationClassAssignmentRubricByRef", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationClassAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationClassAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaEducationClassAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -461702,165 +482900,195 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Set-MgBetaEducationClassAssignmentUpResourceFolder", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationClassModuleUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationMeAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaEducationUserAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaExternalConnectionItem", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -461879,635 +483107,679 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Set-MgBetaExternalConnectionItem", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPaymentCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyEmployeePictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyInformationPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}/picture", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPurchaseInvoiceLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyPurchaseInvoiceVendorPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleInvoiceCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleInvoiceLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleOrderCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleOrderLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleQuoteCustomerPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanySaleQuoteLineItemPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaFinancialCompanyVendorPictureContent", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaGroupDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaGroupDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaGroupLicense", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-beta", "Uri": "/groups/{group-id}/assignLicense", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -462526,63 +483798,67 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Set-MgBetaGroupLicense", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaGroupPhotoContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "beta", + "Variants": [ + "Set", + "Set1", + "SetViaIdentity", + "SetViaIdentity1" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "ProfilePhoto.ReadWrite.All", @@ -462601,189 +483877,202 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Set-MgBetaGroupPhotoContent", - "Variants": [ - "Set", - "Set1", - "SetViaIdentity", - "SetViaIdentity1" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteAnalyticItemActivityStatActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaGroupTeam", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/team", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -462802,383 +484091,407 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Set-MgBetaGroupTeam", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/photo/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2CUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2CUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/setOrder", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaIdentityB2CUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta", + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/setOrder", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/setOrder", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaIdentityB2XUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/setOrder", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOnPremisePublishingProfileConnectorGroupApplicationLogo", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}/applications/{application-id}/logo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/backgroundImage", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingBackgroundImage", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/backgroundImage", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/bannerLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/bannerLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/customCSS", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/customCSS", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/favicon", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/favicon", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/headerLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/headerLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationBackgroundImage", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463197,19 +484510,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463228,19 +484542,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463259,19 +484574,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463290,19 +484606,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463321,19 +484638,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463352,19 +484670,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -463383,47 +484702,50 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationBrandingLocalizationSquareLogoDark", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogo", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogo", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogoDark", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaOrganizationBrandingSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogoDark", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaOrganizationMobileDeviceManagementAuthority", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/setMobileDeviceManagementAuthority", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -463442,191 +484764,206 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Set-MgBetaOrganizationMobileDeviceManagementAuthority", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaPrintPrinterJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaPrintPrinterShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaPrintShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/alerts_v2/{alert-id}/comments", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}/comments", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlertComment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileContent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSecurityCaseEdiscoveryCaseReviewSetFileExtractedTextContent", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}/extractedTextContent", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaSecurityIncidentAlertComment", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlertComment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaServiceAnnouncementMessageAttachmentArchive", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaServiceAnnouncementMessageAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaServicePrincipalSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaServicePrincipalSynchronizationSecret", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -463645,453 +484982,484 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Set-MgBetaServicePrincipalSynchronizationSecret", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareRootContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaShareRootContentStream", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteAnalyticItemActivityStatActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteListItemActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteListItemActivityDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/photo/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamPrimaryChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamPrimaryChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaTeamSchedule", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -464110,167 +485478,178 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Set-MgBetaTeamSchedule", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelFileFolderContentStream", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTeamworkDeletedTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}/assignTag", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-assigntag?view=graph-rest-beta", + "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}/assignTag", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/managedtenants-tenanttag-assigntag?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "Uri": "/tenantRelationships/multiTenantOrganization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTenantRelationshipMultiTenantOrganization", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}/$value", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaTrustFrameworkPolicyContent", + "ApiReferenceLink": null, + "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaUserChatMessageReaction", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "ChatMessage.Send", @@ -464289,465 +485668,497 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserChatMessageReaction", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserContactFolderChildFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserContactFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserDeviceEnrollmentConfigurationPriority", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveBundleContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveFollowingContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemChildContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootChildContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootListItemDriveItemContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "beta", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserDriveSpecialContentStream", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/contentStream", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaUserLicense", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-beta", "Uri": "/users/{user-id}/assignLicense", + "ApiVersion": "beta", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -464766,81 +486177,86 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserLicense", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserMailFolderChildFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserMailFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/setCloudPcReviewStatus", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserManagedDeviceCloudPcReviewStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/setCloudPcReviewStatus", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/manageddevice-setcloudpcreviewstatus?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/setDeviceName", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgBetaUserManagedDeviceName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/setDeviceName", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaUserManagerByRef", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -464859,175 +486275,187 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Set-MgBetaUserManagerByRef", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingAlternativeRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/alternativeRecording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/broadcastRecording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingBroadcastRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/broadcastRecording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recording", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgBetaUserPhotoContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "beta", + "Variants": [ + "Set", + "Set1", + "SetViaIdentity", + "SetViaIdentity1" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -465051,24 +486479,25 @@ "FullDescription": "Allows the app to read and update user profiles without a signed in user.", "IsAdmin": false, "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.Users", - "Command": "Set-MgBetaUserPhotoContent", - "Variants": [ - "Set", - "Set1", - "SetViaIdentity", - "SetViaIdentity1" + "IsLeastPrivilege": false + } ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaUserPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta", "Uri": "/users/{user-id}/presence/setPresence", + "ApiVersion": "beta", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -465087,21 +486516,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserPresence", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaUserPresenceStatusMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta", + "Uri": "/users/{user-id}/presence/setStatusMessage", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/presence/setStatusMessage", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -465120,21 +486550,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserPresenceStatusMessage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgBetaUserPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta", + "Uri": "/users/{user-id}/presence/setUserPreferredPresence", + "ApiVersion": "beta", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/presence/setUserPreferredPresence", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -465153,309 +486584,329 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Set-MgBetaUserPresenceUserPreferredPresence", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserTodoListTaskAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgBetaUserTodoListTaskAttachmentSessionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", + "ApiVersion": "beta", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgChatMessageReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgCommunicationOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setPresence", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgCommunicationPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0", + "Uri": "/communications/presences/{presence-id}/setPresence", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setStatusMessage", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgCommunicationPresenceStatusMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0", + "Uri": "/communications/presences/{presence-id}/setStatusMessage", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/presences/{presence-id}/setUserPreferredPresence", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgCommunicationPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0", + "Uri": "/communications/presences/{presence-id}/setUserPreferredPresence", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0" + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Set-MgDeviceAppMgtManagedEBook", + "Method": "POST", "Command": "Set-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-books-managedebook-assign?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-books-managedebook-assign?view=graph-rest-1.0" + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Set-MgDeviceAppMgtMobileApp", + "Method": "POST", "Command": "Set-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Set-MgDeviceAppMgtMobileAppConfiguration", + "Method": "POST", "Command": "Set-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-assign?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-apps-manageddevicemobileappconfiguration-assign?view=graph-rest-1.0" + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Set-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "POST", "Command": "Set-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappconfiguration-assign?view=graph-rest-1.0", + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappconfiguration-assign?view=graph-rest-1.0" + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-assign?view=graph-rest-1.0", + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-devicecompliancepolicy-assign?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-deviceconfiguration-assign?view=graph-rest-1.0", + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-deviceconfig-deviceconfiguration-assign?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-assign?view=graph-rest-1.0", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assign", + "ApiVersion": "v1.0", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -465474,21 +486925,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfiguration", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-assign?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-setpriority?view=graph-rest-1.0", "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/setPriority", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -465507,111 +486959,116 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Set-MgDeviceManagementDeviceEnrollmentConfigurationPriority", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceenrollmentconfiguration-setpriority?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcprovisioningpolicy-assign?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assign", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpcusersetting-assign?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDeviceManagementWindowsAutopilotDeviceIdentityUserToDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-assignusertodevice?view=graph-rest-1.0", + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/assignUserToDevice", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-assignusertodevice?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgDriveItemContent", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -465638,33 +487095,37 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Set-MgDriveItemContent", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgDriveItemSensitivityLabel", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "v1.0", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite.All", @@ -465683,135 +487144,144 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Set-MgDriveItemSensitivityLabel", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgEducationClassAssignmentRubricByRef", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -465830,49 +487300,50 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Set-MgEducationClassAssignmentRubricByRef", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationClassAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationClassAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgEducationClassAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -465891,165 +487362,195 @@ "IsLeastPrivilege": true } ], - "Module": "Education", - "Command": "Set-MgEducationClassAssignmentUpResourceFolder", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationClassModuleUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationmodule-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgEducationMeAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationMeAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationMeAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationMeAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgEducationUserAssignmentRubricByRef", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric/$ref", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": null }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationUserAssignmentSubmissionUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationUserAssignmentUpFeedbackResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpFeedbackResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupfeedbackresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgEducationUserAssignmentUpResourceFolder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/setUpResourcesFolder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationassignment-setupresourcesfolder?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgEntitlementManagementAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgExternalConnectionItem", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -466068,221 +487569,236 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Set-MgExternalConnectionItem", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgGroupDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgGroupDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgGroupLicense", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-1.0", "Uri": "/groups/{group-id}/assignLicense", + "ApiVersion": "v1.0", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -466301,63 +487817,67 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Set-MgGroupLicense", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-assignlicense?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgGroupPhotoContent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/photo/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "Set1", + "SetViaIdentity", + "SetViaIdentity1" + ], + "Module": "Groups", "Permissions": [ { "Name": "ProfilePhoto.ReadWrite.All", @@ -466376,133 +487896,142 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Set-MgGroupPhotoContent", - "Variants": [ - "Set", - "Set1", - "SetViaIdentity", - "SetViaIdentity1" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgGroupTeam", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/team", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -466521,297 +488050,315 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Set-MgGroupTeam", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeam" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/photo/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/team/schedule", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgGroupTeamSchedule", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowLanguageDefaultPageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowLanguageOverridePageContent", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowPostAttributeCollectionByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection/$ref", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgIdentityB2XUserFlowPostFederationSignupByRef", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup/$ref", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/setOrder", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgIdentityB2XUserFlowUserAttributeAssignmentOrder", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-1.0", + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/setOrder", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/identityuserflowattributeassignment-setorder?view=graph-rest-1.0" + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewScheduleDefinition" }, { - "Uri": "/organization/{organization-id}/branding/backgroundImage", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingBackgroundImage", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/backgroundImage", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/bannerLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/bannerLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/customCSS", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/customCSS", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/favicon", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/favicon", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/headerLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/headerLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationBackgroundImage", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/backgroundImage", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466830,19 +488377,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationBackgroundImage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationBannerLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/bannerLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466861,19 +488409,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationBannerLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationCustomCss", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/customCSS", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466892,19 +488441,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationCustomCss", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationFavicon", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/favicon", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466923,19 +488473,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationFavicon", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationHeaderLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/headerLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466954,19 +488505,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationHeaderLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogo", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -466985,19 +488537,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationSquareLogo", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgOrganizationBrandingLocalizationSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}/squareLogoDark", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -467016,47 +488569,50 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationBrandingLocalizationSquareLogoDark", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogo", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingSquareLogo", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogo", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/branding/squareLogoDark", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgOrganizationBrandingSquareLogoDark", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/squareLogoDark", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-setmobiledevicemanagementauthority?view=graph-rest-1.0", "Uri": "/organization/{organization-id}/setMobileDeviceManagementAuthority", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetViaIdentity" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -467075,149 +488631,161 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Set-MgOrganizationMobileDeviceManagementAuthority", - "Variants": [ - "Set", - "SetViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-setmobiledevicemanagementauthority?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgPolicyCrossTenantAccessPolicyPartnerIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}/identitySynchronization", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantIdentitySyncPolicyPartner" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgPrintPrinterJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgPrintShareJobDocumentContent", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/alerts_v2/{alert-id}/comments", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}/comments", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlertComment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgSecurityIncidentAlertComment", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}/alerts/{alert-id}/comments", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlertComment", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlertComment" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgServiceAnnouncementMessageAttachmentArchive", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachmentsArchive", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgServiceAnnouncementMessageAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgServicePrincipalSynchronization", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronization" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgServicePrincipalSynchronizationJobBulkUploadContent", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgServicePrincipalSynchronizationSecret", + "ApiReferenceLink": null, "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/secrets", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -467236,311 +488804,332 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Set-MgServicePrincipalSynchronizationSecret", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSynchronizationSecretKeyStringValuePair" }, { - "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgShareDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgShareItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgShareListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "Set1", "SetViaIdentity", "SetViaIdentity1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgShareRootContent", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgSiteAnalyticItemActivityStatActivityDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgSiteListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgSiteOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/photo/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamPhotoContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamPrimaryChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamPrimaryChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgTeamSchedule", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -467559,123 +489148,131 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Set-MgTeamSchedule", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedule", - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSchedule" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelFileFolderContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/filesFolder/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgTeamworkDeletedTeamChannelMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/tenantRelationships/multiTenantOrganization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgTenantRelationshipMultiTenantOrganization", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganization", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganization" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgUserChatMessageReaction", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/setReaction", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "ChatMessage.Send", @@ -467694,293 +489291,313 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Set-MgUserChatMessageReaction", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgUserChatMessageReplyReaction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/setReaction", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserContactFolderChildFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserContactFolderContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserContactPhotoContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveBundleContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/bundles/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveFollowingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/following/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveItemChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/children/{driveItem-id1}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveItemListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgUserDriveItemSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/assignSensitivityLabel", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveItemVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveRootChildContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/children/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveRootContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveRootListItemDriveItemContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/driveItem/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/assignSensitivityLabel", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Set-MgUserDriveRootSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/assignSensitivityLabel", + "ApiVersion": "v1.0", "Variants": [ "Assign", "AssignExpanded", "AssignViaIdentity", "AssignViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveRootVersionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserDriveSpecialContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/special/{driveItem-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgUserLicense", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-1.0", "Uri": "/users/{user-id}/assignLicense", + "ApiVersion": "v1.0", + "Variants": [ + "Assign", + "AssignExpanded", + "AssignViaIdentity", + "AssignViaIdentityExpanded" + ], + "Module": "Users.Actions", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -467999,49 +489616,52 @@ "IsLeastPrivilege": false } ], - "Module": "Users.Actions", - "Command": "Set-MgUserLicense", - "Variants": [ - "Assign", - "AssignExpanded", - "AssignViaIdentity", - "AssignViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-assignlicense?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserMailFolderChildFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserMailFolderMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgUserManagerByRef", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/manager/$ref", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "SetExpanded", + "SetViaIdentity", + "SetViaIdentityExpanded" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -468060,133 +489680,142 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Set-MgUserManagerByRef", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/users/{user-id}/messages/{message-id}/$value", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserMessageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnenoteResourceContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/resources/{onenoteResource-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnlineMeetingAttendeeReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendeeReport", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnlineMeetingRecordingContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnlineMeetingTranscriptContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserOnlineMeetingTranscriptMetadataContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}/metadataContent", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PUT", + "Command": "Set-MgUserPhotoContent", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/photo/$value", + "ApiVersion": "v1.0", + "Variants": [ + "Set", + "Set1", + "SetViaIdentity", + "SetViaIdentity1" + ], + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -468213,21 +489842,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Set-MgUserPhotoContent", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgUserPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0", + "Uri": "/users/{user-id}/presence/setPresence", + "ApiVersion": "v1.0", "Variants": [ "Set", - "Set1", + "SetExpanded", "SetViaIdentity", - "SetViaIdentity1" + "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/presence/setPresence", + "Module": "Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -468246,21 +489876,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Set-MgUserPresence", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgUserPresenceStatusMessage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0", + "Uri": "/users/{user-id}/presence/setStatusMessage", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/presence/setStatusMessage", + "Module": "Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -468279,21 +489910,22 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Set-MgUserPresenceStatusMessage", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Set-MgUserPresenceUserPreferredPresence", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0", + "Uri": "/users/{user-id}/presence/setUserPreferredPresence", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetExpanded", "SetViaIdentity", "SetViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setstatusmessage?view=graph-rest-1.0" - }, - { - "Uri": "/users/{user-id}/presence/setUserPreferredPresence", + "Module": "Users.Actions", "Permissions": [ { "Name": "Presence.ReadWrite", @@ -468312,147 +489944,157 @@ "IsLeastPrivilege": true } ], - "Module": "Users.Actions", - "Command": "Set-MgUserPresenceUserPreferredPresence", - "Variants": [ - "Set", - "SetExpanded", - "SetViaIdentity", - "SetViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/presence-setuserpreferredpresence?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserTodoListTaskAttachmentContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachments/{attachmentBase-id}/$value", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PUT", "Command": "Set-MgUserTodoListTaskAttachmentSessionContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}/content", + "ApiVersion": "v1.0", "Variants": [ "Set", "SetViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "PUT", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/bypassActivationLock", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Skip-MgBetaDeviceManagementComanagedDeviceActivationLock", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Variants": [ "Bypass", "BypassViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Skip-MgBetaDeviceManagementManagedDeviceActivationLock", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Variants": [ "Bypass", "BypassViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Skip-MgBetaUserManagedDeviceActivationLock", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "beta", "Variants": [ "Bypass", "BypassViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Skip-MgDeviceManagementManagedDeviceActivationLock", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "v1.0", "Variants": [ "Bypass", "BypassViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Skip-MgUserManagedDeviceActivationLock", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/bypassActivationLock", + "ApiVersion": "v1.0", "Variants": [ "Bypass", "BypassViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-bypassactivationlock?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "v1.0", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgBetaCommunicationCallParticipantHoldMusic", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/startHoldMusic", + "ApiVersion": "beta", + "Variants": [ + "Start", + "StartExpanded", + "StartViaIdentity", + "StartViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallasGuest.All", @@ -468471,83 +490113,86 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Start-MgBetaCommunicationCallParticipantHoldMusic", - "Variants": [ - "Start", - "StartExpanded", - "StartViaIdentity", - "StartViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStartHoldMusicOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphStartHoldMusicOperation" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/triggerConfigurationManagerAction", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaDeviceManagementComanagedDeviceConfigurationManagerAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaDeviceManagementManagedDeviceConfigurationManagerAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/powerOn", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/powerOn", + "ApiVersion": "beta", "Variants": [ "PowerOn", "PowerOnViaIdentity", "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/runHealthChecks", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/runHealthChecks", + "ApiVersion": "beta", "Variants": [ "Run", "RunViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-start?view=graph-rest-beta", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/start", + "ApiVersion": "beta", + "Variants": [ + "Start", + "StartViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.ReadWrite", @@ -468566,75 +490211,80 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Start-MgBetaEducationSynchronizationProfile", - "Variants": [ - "Start", - "StartViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationFileSynchronizationVerificationMessage", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-start?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationFileSynchronizationVerificationMessage" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/start", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/start", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/startPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaPrintPrinterJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/startPrintJob", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/start", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/start", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/startPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaPrintPrinterShareJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/startPrintJob", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgBetaPrintShareJob", + "ApiReferenceLink": null, "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/start", + "ApiVersion": "beta", + "Variants": [ + "Start", + "StartViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -468677,33 +490327,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Start-MgBetaPrintShareJob", - "Variants": [ - "Start", - "StartViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/startPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaPrintShareJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/startPrintJob", + "ApiVersion": "beta", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-run?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}/run", + "ApiVersion": "beta", + "Variants": [ + "Run", + "RunViaIdentity" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -468722,33 +490374,35 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Start-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", - "Variants": [ - "Run", - "RunViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoveryreviewsetquery-run?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { - "Uri": "/security/runHuntingQuery", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaSecurityHuntingQuery", + "ApiReferenceLink": null, + "Uri": "/security/runHuntingQuery", + "ApiVersion": "beta", "Variants": [ "Run", "RunExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "beta", + "Variants": [ + "Start", + "StartViaIdentity" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -468767,81 +490421,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Start-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Start", - "StartViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/startBreak", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaTeamScheduleTimeCardBreak", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-startbreak?view=graph-rest-beta", + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/startBreak", + "ApiVersion": "beta", "Variants": [ "Start", "StartExpanded", "StartViaIdentity", "StartViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-startbreak?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/runDiagnostics", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaTeamworkDeviceDiagnostic", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-rundiagnostics?view=graph-rest-beta", + "Uri": "/teamwork/devices/{teamworkDevice-id}/runDiagnostics", + "ApiVersion": "beta", "Variants": [ "Run", "RunViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-rundiagnostics?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/powerOn", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/powerOn", + "ApiVersion": "beta", "Variants": [ "PowerOn", "PowerOnViaIdentity", "Start", "StartViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweron?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgBetaUserManagedDeviceConfigurationManagerAction", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/triggerConfigurationManagerAction", + "ApiVersion": "beta", "Variants": [ "Trigger", "TriggerExpanded", "TriggerViaIdentity", "TriggerViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgCommunicationCallParticipantHoldMusic", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/startHoldMusic", + "ApiVersion": "v1.0", + "Variants": [ + "Start", + "StartExpanded", + "StartViaIdentity", + "StartViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallasGuest.All", @@ -468860,49 +490521,50 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Start-MgCommunicationCallParticipantHoldMusic", - "Variants": [ - "Start", - "StartExpanded", - "StartViaIdentity", - "StartViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStartHoldMusicOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-startholdmusic?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphStartHoldMusicOperation" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/runHealthChecks", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgDeviceManagementVirtualEndpointOnPremiseConnectionHealthCheck", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/runHealthChecks", + "ApiVersion": "v1.0", "Variants": [ "Run", "RunViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-runhealthcheck?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/start", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0", + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/start", + "ApiVersion": "v1.0", "Variants": [ "Start", "StartViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0", "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/start", + "ApiVersion": "v1.0", + "Variants": [ + "Start", + "StartViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.Create", @@ -468945,33 +490607,35 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Start-MgPrintShareJob", - "Variants": [ - "Start", - "StartViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJobStatus", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-start?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphPrintJobStatus" }, { - "Uri": "/security/runHuntingQuery", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "POST", "Command": "Start-MgSecurityHuntingQuery", + "ApiReferenceLink": null, + "Uri": "/security/runHuntingQuery", + "ApiVersion": "v1.0", "Variants": [ "Run", "RunExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHuntingQueryResults" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Start-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/start", + "ApiVersion": "v1.0", + "Variants": [ + "Start", + "StartViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -468990,19 +490654,20 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Start-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Start", - "StartViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-start?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta", "Uri": "/accessReviews/{accessReview-id}/stop", + "ApiVersion": "beta", + "Variants": [ + "Stop", + "StopViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -469021,33 +490686,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Stop-MgBetaAccessReview", - "Variants": [ - "Stop", - "StopViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaAccessReviewInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-stop?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta", "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/cancel", + "ApiVersion": "beta", + "Variants": [ + "Cancel", + "CancelExpanded", + "CancelViaIdentity", + "CancelViaIdentityExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -469074,37 +490743,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Stop-MgBetaBookingBusinessAppointment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta", + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta" + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Stop-MgBetaBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaCommunicationCallMediaProcessing", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-beta", + "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-beta" - }, - { - "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -469123,21 +490794,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Stop-MgBetaCommunicationCallMediaProcessing", - "Variants": [ - "Cancel", - "CancelExpanded", - "CancelViaIdentity", - "CancelViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaCommunicationCallParticipantHoldMusic", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/stopHoldMusic", + "ApiVersion": "beta", + "Variants": [ + "Stop", + "StopExpanded", + "StopViaIdentity", + "StopViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallasGuest.All", @@ -469156,21 +490828,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Stop-MgBetaCommunicationCallParticipantHoldMusic", - "Variants": [ - "Stop", - "StopExpanded", - "StopViaIdentity", - "StopViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphStopHoldMusicOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphStopHoldMusicOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestApproval", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/{operationApprovalRequest-id}/cancelApproval", + "ApiVersion": "beta", + "Variants": [ + "Cancel", + "CancelExpanded", + "CancelViaIdentity", + "CancelViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -469189,21 +490862,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestApproval", - "Variants": [ - "Cancel", - "CancelExpanded", - "CancelViaIdentity", - "CancelViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestMyRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/operationApprovalRequests/cancelMyRequest", + "ApiVersion": "beta", + "Variants": [ + "Cancel", + "CancelExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -469222,277 +490894,296 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Stop-MgBetaDeviceManagementOperationApprovalRequestMyRequest", - "Variants": [ - "Cancel", - "CancelExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/powerOff", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaDeviceManagementVirtualEndpointCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/powerOff", + "ApiVersion": "beta", "Variants": [ "PowerOff", "PowerOffViaIdentity", "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/endGracePeriod", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaDeviceManagementVirtualEndpointCloudPcGracePeriod", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/endGracePeriod", + "ApiVersion": "beta", "Variants": [ "End", "EndViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/zebraFotaDeployments/{zebraFotaDeployment-id}/cancel", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaDeviceManagementZebraFotaDeployment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/zebraFotaDeployments/{zebraFotaDeployment-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancelAndSend", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaFinancialCompanySaleInvoiceAndSend", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancelAndSend", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancel", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaFinancialCompanySalesInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/cancel", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", + "Uri": "/groups/{group-id}/events/{event-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stopApplyDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstanceApplyDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stopApplyDecisions", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stopApplyDecisions", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceApplyDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stopApplyDecisions", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/cancel", + "ApiVersion": "beta", + "Variants": [ + "Cancel", + "CancelViaIdentity" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic", @@ -469527,131 +491218,140 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Stop-MgBetaPrintPrinterJob", - "Variants": [ - "Cancel", - "CancelViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/cancelPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrintPrinterJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/cancelPrintJob", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/cancel", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/cancelPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrintPrinterShareJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/cancelPrintJob", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancel", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-beta" + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancelPrintJob", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrintShareJobPrintJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancelPrintJob", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", + "Variants": [ + "Cancel", + "CancelViaIdentity" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", @@ -469670,19 +491370,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Stop-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", @@ -469701,223 +491402,240 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Stop-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Cancel", - "CancelViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/security/securityActions/{securityAction-id}/cancelSecurityAction", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaSecurityAction", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityaction-cancelsecurityaction?view=graph-rest-beta", + "Uri": "/security/securityActions/{securityAction-id}/cancelSecurityAction", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/securityaction-cancelsecurityaction?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/endBreak", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaTeamScheduleTimeCardBreak", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-endbreak?view=graph-rest-beta", + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}/endBreak", + "ApiVersion": "beta", "Variants": [ "End", "EndExpanded", "EndViaIdentity", "EndViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/timecard-endbreak?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/powerOff", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserCloudPc", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/powerOff", + "ApiVersion": "beta", "Variants": [ "PowerOff", "PowerOffViaIdentity", "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-poweroff?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/endGracePeriod", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserCloudPcGracePeriod", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/{cloudPC-id}/endGracePeriod", + "ApiVersion": "beta", "Variants": [ "End", "EndViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/cancel", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stop", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stopApplyDecisions", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstanceApplyDecision", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stopApplyDecisions", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaUserPendingAccessReviewInstanceStage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta", + "Uri": "/users/{user-id}/pendingAccessReviewInstances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", + "ApiVersion": "beta", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/cancel", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/cancel", + "ApiVersion": "beta", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBookingBusinessAppointment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0", "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}/cancel", + "ApiVersion": "v1.0", + "Variants": [ + "Cancel", + "CancelExpanded", + "CancelViaIdentity", + "CancelViaIdentityExpanded" + ], + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -469944,37 +491662,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Stop-MgBookingBusinessAppointment", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgBookingBusinessCalendarView", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0", + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0" + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}/cancel", - "Permissions": [], - "Module": "Bookings", - "Command": "Stop-MgBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgCommunicationCallMediaProcessing", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0", + "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingappointment-cancel?view=graph-rest-1.0" - }, - { - "Uri": "/communications/calls/{call-id}/cancelMediaProcessing", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.Initiate.All", @@ -469993,21 +491713,22 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Stop-MgCommunicationCallMediaProcessing", - "Variants": [ - "Cancel", - "CancelExpanded", - "CancelViaIdentity", - "CancelViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-cancelmediaprocessing?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphCancelMediaProcessingOperation" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgCommunicationCallParticipantHoldMusic", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/participants/{participant-id}/stopHoldMusic", + "ApiVersion": "v1.0", + "Variants": [ + "Stop", + "StopExpanded", + "StopViaIdentity", + "StopViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCallasGuest.All", @@ -470026,151 +491747,159 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Stop-MgCommunicationCallParticipantHoldMusic", - "Variants": [ - "Stop", - "StopExpanded", - "StopViaIdentity", - "StopViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphStopHoldMusicOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/participant-stopholdmusic?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphStopHoldMusicOperation" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/endGracePeriod", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgDeviceManagementVirtualEndpointCloudPcGracePeriod", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/{cloudPC-id}/endGracePeriod", + "ApiVersion": "v1.0", "Variants": [ "End", "EndViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-endgraceperiod?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-cancel?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgGroupCalendarEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/calendar/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/cancel", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgGroupEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/stop", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/stop", + "ApiVersion": "v1.0", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stop", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stop", + "ApiVersion": "v1.0", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewinstance-stop?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-1.0", + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/stop", + "ApiVersion": "v1.0", "Variants": [ "Stop", "StopViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreviewstage-stop?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupassignmentschedulerequest-cancel?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-1.0", + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/privilegedaccessgroupeligibilityschedulerequest-cancel?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgPrintPrinterJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0", "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/cancel", + "ApiVersion": "v1.0", + "Variants": [ + "Cancel", + "CancelViaIdentity" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic", @@ -470205,33 +491934,35 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Stop-MgPrintPrinterJob", - "Variants": [ - "Cancel", - "CancelViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancel", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgPrintShareJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0", + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/printjob-cancel?view=graph-rest-1.0" + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0", "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", + "Variants": [ + "Cancel", + "CancelViaIdentity" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleAssignmentSchedule.ReadWrite.Directory", @@ -470250,19 +491981,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Stop-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0", + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0" - }, - { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleEligibilitySchedule.ReadWrite.Directory", @@ -470281,79 +492013,84 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Stop-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", - "Variants": [ - "Cancel", - "CancelViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-cancel?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0", + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/unifiedroleeligibilityschedulerequest-cancel?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/cancel", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgUserEvent", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Stop-MgUserEventInstance", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0", + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/cancel", + "ApiVersion": "v1.0", "Variants": [ "Cancel", "CancelExpanded", "CancelViaIdentity", "CancelViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/event-cancel?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Submit-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", + "Variants": [ + "Submit", + "SubmitViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -470380,61 +492117,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Submit-MgBetaEducationClassAssignmentSubmission", - "Variants": [ - "Submit", - "SubmitViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Submit-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", "Variants": [ "Submit", "SubmitViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "POST", "Command": "Submit-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "beta", "Variants": [ "Submit", "SubmitViaIdentity" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-beta" + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/security/tiIndicators/submitTiIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Submit-MgBetaSecurityTiIndicator", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-submittiindicators?view=graph-rest-beta", + "Uri": "/security/tiIndicators/submitTiIndicators", + "ApiVersion": "beta", "Variants": [ "Submit", "SubmitExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-submittiindicators?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Submit-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "v1.0", + "Variants": [ + "Submit", + "SubmitViaIdentity" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -470461,107 +492202,114 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Submit-MgEducationClassAssignmentSubmission", - "Variants": [ - "Submit", - "SubmitViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Submit-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "v1.0", "Variants": [ "Submit", "SubmitViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "POST", "Command": "Submit-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0", + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submit", + "ApiVersion": "v1.0", "Variants": [ "Submit", "SubmitViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsubmission-submit?view=graph-rest-1.0" + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Suspend-MgApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "v1.0", "Variants": [ "Pause", "PauseViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Suspend-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "beta", "Variants": [ "Pause", "PauseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/pauseConfigurationRefresh", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Suspend-MgBetaDeviceManagementComanagedDeviceConfigurationRefresh", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/pauseConfigurationRefresh", + "ApiVersion": "beta", "Variants": [ "Pause", "PauseExpanded", "PauseViaIdentity", "PauseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/pauseConfigurationRefresh", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Suspend-MgBetaDeviceManagementManagedDeviceConfigurationRefresh", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/pauseConfigurationRefresh", + "ApiVersion": "beta", "Variants": [ "Pause", "PauseExpanded", "PauseViaIdentity", "PauseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Suspend-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-pause?view=graph-rest-beta", "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/pause", + "ApiVersion": "beta", + "Variants": [ + "Pause", + "PauseViaIdentity" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAdministration.ReadWrite", @@ -470580,19 +492328,20 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Suspend-MgBetaEducationSynchronizationProfile", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Suspend-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta", + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "beta", "Variants": [ "Pause", "PauseViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/educationsynchronizationprofile-pause?view=graph-rest-beta" - }, - { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -470611,35 +492360,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Suspend-MgBetaServicePrincipalSynchronizationJob", - "Variants": [ - "Pause", - "PauseViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/pauseConfigurationRefresh", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Suspend-MgBetaUserManagedDeviceConfigurationRefresh", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/pauseConfigurationRefresh", + "ApiVersion": "beta", "Variants": [ "Pause", "PauseExpanded", "PauseViaIdentity", "PauseViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Suspend-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/pause", + "ApiVersion": "v1.0", + "Variants": [ + "Pause", + "PauseViaIdentity" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -470658,19 +492409,19 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Suspend-MgServicePrincipalSynchronizationJob", - "Variants": [ - "Pause", - "PauseViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-pause?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": "Sync-MgBetaDeviceAppMgtMicrosoftStoreGraphFPreBusinessApp", + "Method": "POST", + "Command": "Sync-MgBetaDeviceAppManagementMicrosoftStoreForBusinessApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/syncMicrosoftStoreForBusinessApps", + "ApiVersion": "beta", + "Variants": [ + "Sync" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -470689,18 +492440,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Sync-MgBetaDeviceAppManagementMicrosoftStoreForBusinessApp", - "Variants": [ - "Sync" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": "Sync-MgBetaDeviceAppMgtVppTokenLicense", + "Method": "POST", + "Command": "Sync-MgBetaDeviceAppManagementVppTokenLicense", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses", + "ApiVersion": "beta", + "Variants": [ + "Sync", + "SyncViaIdentity" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -470719,19 +492472,19 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Sync-MgBetaDeviceAppManagementVppTokenLicense", - "Variants": [ - "Sync", - "SyncViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "POST", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphVppToken" }, { + "CommandAlias": "Sync-MgBetaDeviceAppMgtVppTokenLicenseCount", + "Method": "POST", + "Command": "Sync-MgBetaDeviceAppManagementVppTokenLicenseCount", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/vppTokens/syncLicenseCounts", + "ApiVersion": "beta", + "Variants": [ + "Sync" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -470750,72 +492503,80 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Sync-MgBetaDeviceAppManagementVppTokenLicenseCount", - "Variants": [ - "Sync" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/androidForWorkSettings/syncApps", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementAndroidForWorkSettingApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings/syncApps", + "ApiVersion": "beta", "Variants": [ "Sync" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/syncApps", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSettingApp", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings/syncApps", + "ApiVersion": "beta", "Variants": [ "Sync" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/syncDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementComanagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/syncWithAppleDeviceEnrollmentProgram", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementDepOnboardingSettingWithAppleDeviceEnrollmentProgram", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/syncWithAppleDeviceEnrollmentProgram", + "ApiVersion": "beta", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Sync-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/sync", + "ApiVersion": "beta", + "Variants": [ + "Sync", + "SyncExpanded", + "SyncViaIdentity", + "SyncViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -470834,76 +492595,78 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Sync-MgBetaDeviceManagementExchangeConnector", - "Variants": [ - "Sync", - "SyncExpanded", - "SyncViaIdentity", - "SyncViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotSettings/sync", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementWindowsAutopilotSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotSettings/sync", + "ApiVersion": "beta", "Variants": [ "Sync" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/syncInventory", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaDeviceManagementWindowsDriverUpdateProfileInventory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsDriverUpdateProfiles/{windowsDriverUpdateProfile-id}/syncInventory", + "ApiVersion": "beta", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "beta", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": "Sync-MgDeviceAppMgtMicrosoftStoreGraphFPreBusinessApp", + "Method": "POST", + "Command": "Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-syncmicrosoftstoreforbusinessapps?view=graph-rest-1.0", "Uri": "/deviceAppManagement/syncMicrosoftStoreForBusinessApps", + "ApiVersion": "v1.0", + "Variants": [ + "Sync" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -470922,18 +492685,20 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Sync-MgDeviceAppManagementMicrosoftStoreForBusinessApp", - "Variants": [ - "Sync" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-syncmicrosoftstoreforbusinessapps?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": "Sync-MgDeviceAppMgtVppTokenLicense", + "Method": "POST", + "Command": "Sync-MgDeviceAppManagementVppTokenLicense", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-vpptoken-synclicenses?view=graph-rest-1.0", "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}/syncLicenses", + "ApiVersion": "v1.0", + "Variants": [ + "Sync", + "SyncViaIdentity" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -470952,19 +492717,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Sync-MgDeviceAppManagementVppTokenLicense", - "Variants": [ - "Sync", - "SyncViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-vpptoken-synclicenses?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphVppToken" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Sync-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementexchangeconnector-sync?view=graph-rest-1.0", "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}/sync", + "ApiVersion": "v1.0", + "Variants": [ + "Sync", + "SyncExpanded", + "SyncViaIdentity", + "SyncViaIdentityExpanded" + ], + "Module": "DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -470983,235 +492751,249 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Actions", - "Command": "Sync-MgDeviceManagementExchangeConnector", - "Variants": [ - "Sync", - "SyncExpanded", - "SyncViaIdentity", - "SyncViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-devicemanagementexchangeconnector-sync?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgDeviceManagementManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "v1.0", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Sync-MgUserManagedDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/syncDevice", + "ApiVersion": "v1.0", "Variants": [ "Sync", "SyncViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-syncdevice?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/validateProperties", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgApplicationProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/applications/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgApplicationSynchronizationJobCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaAdministrativeUnitProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/administrativeUnits/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/validateProperties", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaApplicationProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/applications/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaApplicationSynchronizationJobCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta", + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contacts/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaContactProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/contacts/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaContractProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/contracts/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/validateXml", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Test-MgBetaDeviceAppMgtMobileAppXml", + "Method": "POST", "Command": "Test-MgBetaDeviceAppManagementMobileAppXml", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/validateXml", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/assignmentFilters/validateFilter", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/validateFilter", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/validateComplianceScript", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDeviceManagementDeviceCompliancePolicyComplianceScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/validateComplianceScript", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScriptValidationResult", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceScriptValidationResult" }, { - "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/validateBulkResize", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDeviceManagementVirtualEndpointCloudPcBulkResize", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/cloudPCs/validateBulkResize", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult" }, { - "Uri": "/devices/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDeviceProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/devices/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDirectoryDeletedItemProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/directory/deletedItems/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaDirectoryObjectProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", "Uri": "/directoryObjects/validateProperties", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "ValidateExpanded" + ], + "Module": "Beta.DirectoryObjects", "Permissions": [ { "Name": "Group.Read.All", @@ -471246,107 +493028,114 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DirectoryObjects", - "Command": "Test-MgBetaDirectoryObjectProperty", - "Variants": [ - "Validate", - "ValidateExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/directoryRoles/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDirectoryRoleProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/directoryRoles/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDirectoryRoleTemplateProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/directoryRoleTemplates/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directorySettingTemplates/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDirectorySettingTemplateProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/directorySettingTemplates/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydataconnector-validate?view=graph-rest-beta", "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}/validate", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "ValidateViaIdentity" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "IndustryData-DataConnector.ReadWrite.All", @@ -471365,95 +493154,103 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Test-MgBetaExternalIndustryDataConnector", - "Variants": [ - "Validate", - "ValidateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/industrydata-industrydataconnector-validate?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaGroupDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/evaluateDynamicMembership", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupDynamicMembership", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", + "Uri": "/groups/{group-id}/evaluateDynamicMembership", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { - "Uri": "/groups/evaluateDynamicMembership", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupDynamicMembershipRule", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", + "Uri": "/groups/evaluateDynamicMembership", + "ApiVersion": "beta", "Variants": [ "Evaluate1", "EvaluateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaGroupProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-beta", "Uri": "/groups/{group-id}/validateProperties", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "ValidateExpanded", + "ValidateViaIdentity", + "ValidateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -471472,159 +493269,169 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Test-MgBetaGroupProperty", - "Variants": [ - "Validate", - "ValidateExpanded", - "ValidateViaIdentity", - "ValidateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaGroupSiteContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/evaluate", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateApplication", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateApplication", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateClassificationResults", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateRemoval", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionPolicyLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/evaluateRemoval", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/evaluate", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaGroupSiteListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/conditionalAccess/evaluate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaIdentityConditionalAccess", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessWhatIfPolicy", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphConditionalAccessWhatIfPolicy" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaIdentityCustomAuthenticationExtensionAuthenticationConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-beta", "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}/validateAuthenticationConfiguration", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "Validate1", + "ValidateExpanded", + "ValidateViaIdentity" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -471643,63 +493450,65 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Test-MgBetaIdentityCustomAuthenticationExtensionAuthenticationConfiguration", - "Variants": [ - "Validate", - "Validate1", - "ValidateExpanded", - "ValidateViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation" }, { - "Uri": "/informationProtection/dataLossPreventionPolicies/evaluate", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "Uri": "/informationProtection/policy/labels/evaluateApplication", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaInformationProtectionPolicyLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", + "Uri": "/informationProtection/policy/labels/evaluateApplication", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/informationProtection/policy/labels/evaluateClassificationResults", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaInformationProtectionPolicyLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/informationProtection/policy/labels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaInformationProtectionPolicyLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", "Uri": "/informationProtection/policy/labels/evaluateRemoval", + "ApiVersion": "beta", + "Variants": [ + "Evaluate", + "EvaluateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -471718,33 +493527,35 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Identity.SignIns", - "Command": "Test-MgBetaInformationProtectionPolicyLabelRemoval", - "Variants": [ - "Evaluate", - "EvaluateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/organization/validateProperties", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaOrganizationProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/organization/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta", "Uri": "/security/informationProtection/sensitivityLabels/evaluateApplication", + "ApiVersion": "beta", + "Variants": [ + "Evaluate", + "EvaluateExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -471763,61 +493574,67 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Security", - "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelApplication", - "Variants": [ - "Evaluate", - "EvaluateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "Uri": "/security/informationProtection/sensitivityLabels/evaluateClassificationResults", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/security/informationProtection/sensitivityLabels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "Uri": "/security/informationProtection/sensitivityLabels/evaluateRemoval", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSecurityInformationProtectionSensitivityLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta", + "Uri": "/security/informationProtection/sensitivityLabels/evaluateRemoval", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "Uri": "/servicePrincipals/validateProperties", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaServicePrincipalProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/servicePrincipals/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaServicePrincipalSynchronizationJobCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "ValidateExpanded", + "ValidateViaIdentity", + "ValidateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -471836,237 +493653,252 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Test-MgBetaServicePrincipalSynchronizationJobCredential", - "Variants": [ - "Validate", - "ValidateExpanded", - "ValidateViaIdentity", - "ValidateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaShareListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaSiteContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/informationProtection/dataLossPreventionPolicies/evaluate", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/dataLossPreventionPolicies/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { - "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateApplication", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", + "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateApplication", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateClassificationResults", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateRemoval", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionPolicyLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", + "Uri": "/sites/{site-id}/informationProtection/policy/labels/evaluateRemoval", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/sites/{site-id}/informationProtection/sensitivityLabels/evaluate", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/sensitivityLabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaSiteListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/cloudPCs/validateBulkResize", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserCloudPcBulkResize", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta", + "Uri": "/users/{user-id}/cloudPCs/validateBulkResize", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpc-validatebulkresize?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcResizeValidationResult" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Beta.Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgBetaUserDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "beta", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-beta" + "Module": "Beta.Users.Functions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/validatePermission", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/evaluate", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphDlpEvaluatePoliciesJobResponse" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaUserInformationProtectionPolicyLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta", "Uri": "/users/{user-id}/informationProtection/policy/labels/evaluateApplication", + "ApiVersion": "beta", + "Variants": [ + "Evaluate", + "EvaluateExpanded", + "EvaluateViaIdentity", + "EvaluateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -472085,101 +493917,105 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserInformationProtectionPolicyLabelApplication", - "Variants": [ - "Evaluate", - "EvaluateExpanded", - "EvaluateViaIdentity", - "EvaluateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateapplication?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels/evaluateClassificationResults", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionPolicyLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/users/{user-id}/informationProtection/policy/labels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateclassificationresults?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels/evaluateRemoval", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionPolicyLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta", + "Uri": "/users/{user-id}/informationProtection/policy/labels/evaluateRemoval", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/informationprotectionlabel-evaluateremoval?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionAction" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/evaluate", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/evaluate", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse", - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateLabelJobResponse" }, { - "Uri": "/users/{user-id}/joinedGroups/evaluateDynamicMembership", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserJoinedGroupDynamicMembership", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta", + "Uri": "/users/{user-id}/joinedGroups/evaluateDynamicMembership", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-evaluatedynamicmembership?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvaluateDynamicMembershipResult" }, { + "CommandAlias": null, + "Method": "GET", + "Command": "Test-MgBetaUserManagedAppUserBlocked", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/isManagedAppUserBlocked", + "ApiVersion": "beta", + "Variants": [ + "Is", + "IsViaIdentity" + ], + "Module": "Beta.Users.Functions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -472214,19 +494050,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Functions", - "Command": "Test-MgBetaUserManagedAppUserBlocked", - "Variants": [ - "Is", - "IsViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": null + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaUserPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-validatepassword?view=graph-rest-beta", "Uri": "/users/validatePassword", + "ApiVersion": "beta", + "Variants": [ + "Validate", + "ValidateExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "User.ReadWrite", @@ -472245,33 +494082,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserPassword", - "Variants": [ - "Validate", - "ValidateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPasswordValidationInformation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-validatepassword?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphPasswordValidationInformation" }, { - "Uri": "/users/validateProperties", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgBetaUserProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta", + "Uri": "/users/validateProperties", + "ApiVersion": "beta", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta", "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/evaluateApplication", + "ApiVersion": "beta", + "Variants": [ + "Evaluate", + "EvaluateExpanded", + "EvaluateViaIdentity", + "EvaluateViaIdentityExpanded" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -472290,21 +494131,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelApplication", + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelClassificationResult", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta", + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/evaluateClassificationResults", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateapplication?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/evaluateClassificationResults", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -472323,21 +494165,22 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelClassificationResult", + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelRemoval", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta", + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/evaluateRemoval", + "ApiVersion": "beta", "Variants": [ "Evaluate", "EvaluateExpanded", "EvaluateViaIdentity", "EvaluateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateclassificationresults?view=graph-rest-beta" - }, - { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/evaluateRemoval", + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "InformationProtectionPolicy.Read", @@ -472356,77 +494199,80 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users.Actions", - "Command": "Test-MgBetaUserSecurityInformationProtectionSensitivityLabelRemoval", - "Variants": [ - "Evaluate", - "EvaluateExpanded", - "EvaluateViaIdentity", - "EvaluateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-sensitivitylabel-evaluateremoval?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphSecurityInformationProtectionAction" }, { - "Uri": "/contacts/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgContactProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/contacts/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/contracts/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgContractProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/contracts/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/devices/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDeviceProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/devices/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/deletedItems/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDirectoryDeletedItemProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/directory/deletedItems/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgDirectoryObjectProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", "Uri": "/directoryObjects/validateProperties", + "ApiVersion": "v1.0", + "Variants": [ + "Validate", + "ValidateExpanded" + ], + "Module": "DirectoryObjects", "Permissions": [ { "Name": "Group.Read.All", @@ -472461,139 +494307,150 @@ "IsLeastPrivilege": false } ], - "Module": "DirectoryObjects", - "Command": "Test-MgDirectoryObjectProperty", - "Variants": [ - "Validate", - "ValidateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/directoryRoles/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDirectoryRoleProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/directoryRoles/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directoryRoleTemplates/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDirectoryRoleTemplateProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/directoryRoleTemplates/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgGroupDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgGroupProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-1.0", "Uri": "/groups/{group-id}/validateProperties", + "ApiVersion": "v1.0", + "Variants": [ + "Validate", + "ValidateExpanded", + "ValidateViaIdentity", + "ValidateViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group.Read.All", @@ -472612,63 +494469,67 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Test-MgGroupProperty", - "Variants": [ - "Validate", - "ValidateExpanded", - "ValidateViaIdentity", - "ValidateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-validateproperties?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/groupSettingTemplates/validateProperties", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgGroupSettingTemplateProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/groupSettingTemplates/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgGroupSiteContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgGroupSiteListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-1.0", "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}/validateAuthenticationConfiguration", + "ApiVersion": "v1.0", + "Variants": [ + "Validate", + "Validate1", + "ValidateExpanded", + "ValidateViaIdentity" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "CustomAuthenticationExtension.Read.All", @@ -472687,49 +494548,52 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Test-MgIdentityCustomAuthenticationExtensionAuthenticationConfiguration", - "Variants": [ - "Validate", - "Validate1", - "ValidateExpanded", - "ValidateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/customauthenticationextension-validateauthenticationconfiguration?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphAuthenticationConfigurationValidation" }, { - "Uri": "/organization/validateProperties", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgOrganizationProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/organization/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/validateProperties", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgServicePrincipalProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/servicePrincipals/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Test-MgServicePrincipalSynchronizationJobCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/validateCredentials", + "ApiVersion": "v1.0", + "Variants": [ + "Validate", + "ValidateExpanded", + "ValidateViaIdentity", + "ValidateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -472748,123 +494612,129 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Test-MgServicePrincipalSynchronizationJobCredential", - "Variants": [ - "Validate", - "ValidateExpanded", - "ValidateViaIdentity", - "ValidateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/synchronization-synchronizationjob-validatecredentials?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgShareListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgSiteContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgSiteListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", - "Permissions": [], - "Module": "Users.Functions", + "CommandAlias": null, + "Method": "GET", "Command": "Test-MgUserDriveListContentTypePublished", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/isPublished", + "ApiVersion": "v1.0", "Variants": [ "Is", "IsViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "GET", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-ispublished?view=graph-rest-1.0" + "Module": "Users.Functions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/validatePermission", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/validatePermission", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded", "ValidateViaIdentity", "ValidateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/validateProperties", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Test-MgUserProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0", + "Uri": "/users/validateProperties", + "ApiVersion": "v1.0", "Variants": [ "Validate", "ValidateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directoryobject-validateproperties?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Unblock-MgBetaUserManagedApp", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/unblockManagedApps", + "ApiVersion": "beta", + "Variants": [ + "Unblock", + "UnblockViaIdentity" + ], + "Module": "Beta.Users.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -472883,859 +494753,920 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users.Actions", - "Command": "Unblock-MgBetaUserManagedApp", - "Variants": [ - "Unblock", - "UnblockViaIdentity" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaChatMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaChatMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamPrimaryChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamPrimaryChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}/undoDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedChatDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-beta", + "Uri": "/teamwork/deletedChats/{deletedChat-id}/undoDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedTeamChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaTeamworkDeletedTeamChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaUserChatMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgBetaUserChatMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "beta", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgChatMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgChatMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamPrimaryChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamPrimaryChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}/undoDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamworkDeletedChatDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-1.0", + "Uri": "/teamwork/deletedChats/{deletedChat-id}/undoDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/deletedchat-undodelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamworkDeletedTeamChannelMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgTeamworkDeletedTeamChannelMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgUserChatMessageReplySoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Undo-MgUserChatMessageSoftDelete", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/undoSoftDelete", + "ApiVersion": "v1.0", "Variants": [ "Undo", "UndoViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chatmessage-undosoftdelete?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/unpublish", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaBookingBusiness", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-beta", + "Uri": "/bookingBusinesses/{bookingBusiness-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "Unpublish1", "UnpublishViaIdentity", "UnpublishViaIdentity1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-beta" + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaGroupDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaGroupSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaGroupSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaShareListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBetaUserDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "beta", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/unpublish", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgBookingBusiness", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0", + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/bookingbusiness-unpublish?view=graph-rest-1.0" + "Module": "Bookings", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgGroupDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgGroupSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgGroupSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgShareListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgSiteContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgSiteListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Unpublish-MgUserDriveListContentType", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0", + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/unpublish", + "ApiVersion": "v1.0", "Variants": [ "Unpublish", "UnpublishViaIdentity" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/contenttype-unpublish?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEdge", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdge" }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternetExplorerMode", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSite" }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "Uri": "/admin/people/pronouns", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminPeoplePronoun", + "ApiReferenceLink": null, + "Uri": "/admin/people/pronouns", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPronounsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharepoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepoint" }, { - "Uri": "/admin/sharepoint/settings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAdminSharepointSetting", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint/settings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharepointSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAppCatalogTeamApp", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", "Uri": "/applications/{application-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -473754,69 +495685,73 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Update-MgApplication", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications(appId='{appId}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", + "Uri": "/applications(appId='{appId}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0", + "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationExtensionProperty", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -473835,101 +495770,107 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Update-MgApplicationFederatedIdentityCredential", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -473948,53 +495889,56 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Update-MgApplicationSynchronizationTemplate", + "OutputType": "IMicrosoftGraphSynchronizationTemplate" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Applications", - "Command": "Update-MgApplicationSynchronizationTemplateSchema", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", - "Command": "Update-MgApplicationSynchronizationTemplateSchemaDirectory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaAccessReview", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-beta", + "Uri": "/accessReviews/{accessReview-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/accessReviews/{accessReview-id}", + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "AccessReview.ReadWrite.Membership", @@ -474013,581 +495957,618 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Update-MgBetaAccessReview", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accessreview-update?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstance", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReview" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/decisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewInstanceReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/instances/{accessReview-id1}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewMyDecision", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/myDecisions/{accessReviewDecision-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewDecision", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewDecision" }, { - "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAccessReviewReviewer", + "ApiReferenceLink": null, + "Uri": "/accessReviews/{accessReview-id}/reviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/admin/edge", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminEdge", + "ApiReferenceLink": null, + "Uri": "/admin/edge", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdge", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdge" }, { - "Uri": "/admin/edge/internetExplorerMode", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerMode", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternetExplorerMode", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternetExplorerMode" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteList", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSiteList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSiteList" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteListSharedCookie", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sharedCookies/{browserSharedCookie-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSharedCookie", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSharedCookie" }, { - "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminEdgeInternetExplorerModeSiteListSite", + "ApiReferenceLink": null, + "Uri": "/admin/edge/internetExplorerMode/siteLists/{browserSiteList-id}/sites/{browserSite-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBrowserSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphBrowserSite" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnit", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-update?view=graph-rest-beta", + "Uri": "/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/administrativeunit-update?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/admin/people", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminPeople", + "ApiReferenceLink": null, + "Uri": "/admin/people", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPeopleAdminSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPeopleAdminSettings" }, { - "Uri": "/admin/people/itemInsights", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminPeopleItemInsight", + "ApiReferenceLink": null, + "Uri": "/admin/people/itemInsights", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminPeopleProfileCardProperty", + "ApiReferenceLink": null, + "Uri": "/admin/people/profileCardProperties/{profileCardProperty-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfileCardProperty", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfileCardProperty" }, { - "Uri": "/admin/people/pronouns", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminPeoplePronoun", + "ApiReferenceLink": null, + "Uri": "/admin/people/pronouns", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPronounsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPronounsSettings" }, { - "Uri": "/admin/reportSettings", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminReportSetting", + "ApiReferenceLink": null, + "Uri": "/admin/reportSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdminReportSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdminReportSettings" }, { - "Uri": "/admin/sharepoint", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminSharepoint", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharepoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepoint" }, { - "Uri": "/admin/sharepoint/settings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAdminSharepointSetting", + "ApiReferenceLink": null, + "Uri": "/admin/sharepoint/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharepointSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharepointSettings" }, { - "Uri": "/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreement", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/acceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreementFile", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamApp", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsApp", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsApp" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinition", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionBot", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/bot", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionColorIcon", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionColorIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/colorIcon/hostedContent", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionDashboardCard", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/dashboardCards/{teamsAppDashboardCardDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppDashboardCardDefinition" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionOutlineIcon", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppIcon", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppIcon" }, { - "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaAppCatalogTeamAppDefinitionOutlineIconHostedContent", + "ApiReferenceLink": null, + "Uri": "/appCatalogs/teamsApps/{teamsApp-id}/appDefinitions/{teamsAppDefinition-id}/outlineIcon/hostedContent", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkHostedContent" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaApplication", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", "Uri": "/applications/{application-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -474606,69 +496587,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplication", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications(appId='{appId}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", + "Uri": "/applications(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta", + "Uri": "/applications(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplication", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/application-upsert?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphApplication" }, { - "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationExtensionProperty", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/extensionProperties/{extensionProperty-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExtensionProperty", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphExtensionProperty" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaApplicationFederatedIdentityCredential", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/federatedIdentityCredentials/{federatedIdentityCredential-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -474687,101 +496672,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplicationFederatedIdentityCredential", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationFederatedIdentityCredentialByName", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/federatedIdentityCredentials(name='{name}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedIdentityCredential", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphFederatedIdentityCredential" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaApplicationSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaApplicationSynchronizationTemplate", + "ApiReferenceLink": null, "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -474800,53 +496791,60 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplicationSynchronizationTemplate", + "OutputType": "IMicrosoftGraphSynchronizationTemplate" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaApplicationSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplicationSynchronizationTemplateSchema", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/applications/{application-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Update-MgBetaApplicationSynchronizationTemplateSchemaDirectory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusiness", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "beta", "Variants": [ "Update", + "Update1", "UpdateExpanded", + "UpdateExpanded1", "UpdateViaIdentity", - "UpdateViaIdentityExpanded" + "UpdateViaIdentity1", + "UpdateViaIdentityExpanded", + "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -474865,8 +496863,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusiness", + "OutputType": "IMicrosoftGraphBookingBusiness" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessAppointment", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474877,13 +496882,7 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -474918,8 +496917,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474930,16 +496936,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -474950,13 +496957,7 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomer-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -474991,8 +496992,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessCustomer", + "OutputType": "IMicrosoftGraphBookingCustomer" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475003,13 +497011,7 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomer", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -475036,8 +497038,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475048,13 +497057,7 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -475073,8 +497076,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475085,13 +497095,7 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMember-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -475110,28 +497114,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBookingBusinessStaffMember", - "Variants": [ - "Update", - "Update1", - "UpdateExpanded", - "UpdateExpanded1", - "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded", - "UpdateViaIdentityExpanded1" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingStaffMember", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphBookingStaffMember" }, { - "Uri": "/bookingCurrencies/{bookingCurrency-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475142,29 +497133,41 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaBusinessFlowTemplate", + "ApiReferenceLink": null, + "Uri": "/businessFlowTemplates/{businessFlowTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessFlowTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessFlowTemplate" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenario", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -475183,53 +497186,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenario", + "OutputType": "IMicrosoftGraphBusinessScenario" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioByUniqueName", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessScenario" }, { - "Uri": "/solutions/businessScenarios(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioByUniqueName", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlanner", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenario", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessScenarioPlanner" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlanner", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfiguration", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioPlanner", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -475248,21 +497254,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfiguration", + "OutputType": "IMicrosoftGraphPlannerPlanConfiguration" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/planConfiguration/localizations/{plannerPlanConfigurationLocalization-id}", + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -475281,69 +497288,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerPlanConfigurationLocalization", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerPlanConfigurationLocalization" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTask", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBusinessScenarioTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBusinessScenarioTask" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaBusinessScenarioPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlannerTaskConfiguration", + "ApiReferenceLink": null, "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/taskConfiguration", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Bookings", "Permissions": [ { "Name": "BusinessScenarioConfig.ReadWrite.OwnedBy", @@ -475362,53 +497373,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerTaskConfiguration", + "OutputType": "IMicrosoftGraphPlannerTaskConfiguration" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlannerTaskDetail", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerTaskDetails" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/details", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerTaskDetail", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "Uri": "/solutions/businessScenarios/{businessScenario-id}/planner/tasks/{businessScenarioTask-id}/progressTaskBoardFormat", - "Permissions": [], - "Module": "Beta.Bookings", - "Command": "Update-MgBetaBusinessScenarioPlannerTaskProgressTaskBoardFormat", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-beta", + "Uri": "/chats/{chat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -475435,21 +497449,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaChat", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaChatInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "beta", + "Variants": [ + "Upgrade", + "UpgradeExpanded", + "UpgradeViaIdentity", + "UpgradeViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -475540,53 +497555,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaChatInstalledApp", - "Variants": [ - "Upgrade", - "UpgradeExpanded", - "UpgradeViaIdentity", - "UpgradeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "Uri": "/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatMember", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaChatMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -475621,101 +497639,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaChatMessage", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatOperation", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaChatTab", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForChat", @@ -475758,21 +497782,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaChatTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -475791,69 +497816,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Update-MgBetaCommunicationCallAudioRoutingGroup", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/participants/{participant-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallParticipant", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaCommunicationCallRecordingStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-beta", "Uri": "/communications/calls/{call-id}/updateRecordingStatus", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "Calls.AccessMedia.All", @@ -475872,88 +497901,83 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.CloudCommunications", - "Command": "Update-MgBetaCommunicationCallRecordingStatus", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation" }, { - "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordOrganizerV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/organizer_v2", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsOrganizer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsOrganizer" }, { - "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordParticipantV2", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/participants_v2/{participant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsParticipant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsParticipant" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475964,16 +497988,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -475984,153 +498009,173 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistration", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/compliance", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaCompliance", + "ApiReferenceLink": null, + "Uri": "/compliance", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { - "Uri": "/compliance/ediscovery", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscovery", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryEdiscoveryroot" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476149,21 +498194,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCase", + "OutputType": "IMicrosoftGraphEdiscoveryCase" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCase", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476182,83 +498228,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodian", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCustodian", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryCustodian" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/updateIndex", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianIndex", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/updateIndex", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/custodians/{custodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476277,131 +498328,139 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHold", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryLegalHold", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryLegalHold" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySiteSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoverySiteSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUnifiedGroupSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/legalHolds/{legalHold-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryUserSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryUserSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryNoncustodialDataSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/updateIndex", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaComplianceEdiscoveryCaseNoncustodialDataSourceIndex", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/noncustodialDataSources/{noncustodialDataSource-id}/updateIndex", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateViaIdentity" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseOperation" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/compliance/ediscovery/cases/{case-id}/reviewSets/{reviewSet-id}/queries/{reviewSetQuery-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476420,37 +498479,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryReviewSetQuery", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/settings", - "Permissions": [], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseSetting", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollection", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryCaseSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476469,37 +498530,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollection", + "OutputType": "IMicrosoftGraphEdiscoverySourceCollection" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoverySourceCollection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEdiscoveryDataSource" }, { - "Uri": "/compliance/ediscovery/cases/{case-id}/sourceCollections/{sourceCollection-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseSourceCollectionAdditionalSource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaComplianceEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryDataSource", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/compliance/ediscovery/cases/{case-id}/tags/{tag-id}", + "Module": "Beta.Compliance", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -476518,69 +498581,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Compliance", - "Command": "Update-MgBetaComplianceEdiscoveryCaseTag", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEdiscoveryTag", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEdiscoveryTag" }, { - "Uri": "/contacts/{orgContact-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contracts/{contract-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaContract", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContract", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta", "Uri": "/devices/{device-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -476607,21 +498674,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaDevice", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgt", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagement", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476640,35 +498706,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagement", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceAppManagement" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtAndroidManagedAppProtection", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476687,21 +498757,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476720,21 +498791,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476753,21 +498825,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtDefaultManagedAppProtection", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476786,21 +498859,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtection", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476819,21 +498893,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476852,133 +498927,141 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtEnterpriseCodeSigningCertificate", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementEnterpriseCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/enterpriseCodeSigningCertificates/{enterpriseCodeSigningCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnterpriseCodeSigningCertificate" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSLobAppProvisioningConfiguration", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSLobAppProvisioningConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfiguration" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/assignments/{iosLobAppProvisioningConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosLobAppProvisioningConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationDeviceStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationGroupAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/groupAssignments/{mobileAppProvisioningConfigGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppProvisioningConfigGroupAssignment" }, { - "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSLobAppProvisioningConfigurationUserStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSLobAppProvisioningConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosLobAppProvisioningConfigurations/{iosLobAppProvisioningConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSManagedAppProtection", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -476997,21 +499080,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477030,21 +499114,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477063,101 +499148,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppPolicy", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppRegistration", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppRegistrationManagedAppLogCollectionRequest", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistrationManagedAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/managedAppLogCollectionRequests/{managedAppLogCollectionRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppLogCollectionRequest" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppRegistrationOperation", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477176,165 +499267,175 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { - "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedAppStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBook", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBook" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookAssignment" }, { - "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookCategory", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBookCategories/{managedEBookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedEBookCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookCategory" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookDeviceState", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookInstallSummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEBookInstallSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEBookInstallSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookUserStateSummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInstallStateSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477353,21 +499454,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477386,21 +499488,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -477419,1603 +499522,1703 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidGraphFPreWorkAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidForWorkAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidForWorkApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidManagedStoreAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidManagedStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidManagedStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsAndroidStoreAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsAndroidStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsiOSLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsiOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsIoStoreAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsIoStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignedLicense", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignedLicense", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignedLicenses/{iosVppAppAssignedLicense-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosVppAppAssignedLicense" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsIoVppAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsIoVppAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSDmgAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSDmgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMacOSPkgAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMacOSPkgAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSPkgApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedAndroidLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedAndroidLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagediOSLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagediOSLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsManagedMobileLobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsManagedMobileLobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWin32LobAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWin32LobAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowAppXRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + ], + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowMobileMsiRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsMobileMsiRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowStoreAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowStoreAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsStoreApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowUniversalAppXRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsUniversalAppXRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWindowWebAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWindowsWebAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWinGetAppAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWinGetAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppAsWinGetAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppAsWinGetAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/winGetApp/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppCatalogPackage", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppCatalogPackage", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCatalogPackages/{mobileAppCatalogPackage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCatalogPackage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCatalogPackage" }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppCategory", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfiguration", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMobileAppRelationship", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/relationships/{mobileAppRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppRelationship" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/updateRelationships", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMultipleMobileAppRelationship", + "Method": "POST", "Command": "Update-MgBetaDeviceAppManagementMultipleMobileAppRelationship", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/updateRelationships", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/update", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtMultiplePolicySet", + "Method": "POST", "Command": "Update-MgBetaDeviceAppManagementMultiplePolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/update", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtPolicySet", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementPolicySet", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySet" }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtPolicySetAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementPolicySetAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/assignments/{policySetAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySetAssignment" }, { - "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtPolicySetItem", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementPolicySetItem", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/policySets/{policySet-id}/items/{policySetItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicySetItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicySetItem" }, { - "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtSymantecCodeSigningCertificate", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementSymantecCodeSigningCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/symantecCodeSigningCertificate", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSymantecCodeSigningCertificate" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479034,21 +501237,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479067,21 +501271,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479100,21 +501305,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtTargetedManagedAppConfigurationSetting", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/settings/{deviceManagementConfigurationSetting-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479133,21 +501339,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTargetedManagedAppConfigurationSetting", + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtTask", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementTask", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479166,21 +501373,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTask", + "OutputType": "IMicrosoftGraphDeviceAppManagementTask" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtTaskStatus", + "Method": "POST", + "Command": "Update-MgBetaDeviceAppManagementTaskStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}/updateStatus", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAppManagementTask", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/deviceAppManagementTasks/{deviceAppManagementTask-id}/updateStatus", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479199,21 +501407,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementTaskStatus", + "OutputType": null + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtVppToken", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -479232,85 +501441,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementVppToken", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphVppToken" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtWdacSupplementalPolicy", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementWdacSupplementalPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicy" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtWdacSupplementalPolicyAssignment", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementWdacSupplementalPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/assignments/{windowsDefenderApplicationControlSupplementalPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyAssignment" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtWdacSupplementalPolicyDeploySummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementWdacSupplementalPolicyDeploySummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deploySummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentSummary" }, { - "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtWdacSupplementalPolicyDeviceStatus", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementWdacSupplementalPolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/wdacSupplementalPolicies/{windowsDefenderApplicationControlSupplementalPolicy-id}/deviceStatuses/{windowsDefenderApplicationControlSupplementalPolicyDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDefenderApplicationControlSupplementalPolicyDeploymentStatus" }, { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionDeviceRegistration", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/windowsInformationProtectionDeviceRegistrations/{windowsInformationProtectionDeviceRegistration-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479329,21 +501543,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionDeviceRegistration", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionDeviceRegistration", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479362,21 +501577,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicy", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479395,21 +501611,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479428,21 +501645,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479461,21 +501679,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowInformationProtectionWipeAction", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionWipeActions/{windowsInformationProtectionWipeAction-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479494,21 +501713,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsInformationProtectionWipeAction", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowManagedAppProtection", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionWipeAction", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479527,21 +501747,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtection", + "OutputType": "IMicrosoftGraphWindowsManagedAppProtection" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479560,21 +501781,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowManagedAppProtectionAssignment", + "Method": "PATCH", + "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Beta.Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -479593,85 +501815,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CorporateManagement", - "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtectionAssignment", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" }, { - "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": "Update-MgBetaDeviceAppMgtWindowManagedAppProtectionDeploymentSummary", + "Method": "PATCH", "Command": "Update-MgBetaDeviceAppManagementWindowsManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsManagedAppProtections/{windowsManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "Uri": "/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta", + "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagement", + "ApiReferenceLink": null, "Uri": "/deviceManagement", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -479714,141 +501939,150 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagement", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagement" }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingStateSummary" }, { - "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAdvancedThreatProtectionOnboardingStateSummaryAdvancedThreatProtectionOnboardingDeviceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/advancedThreatProtectionOnboardingStateSummary/advancedThreatProtectionOnboardingDeviceSettingStates/{advancedThreatProtectionOnboardingDeviceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdvancedThreatProtectionOnboardingDeviceSettingState" }, { - "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidDeviceOwnerEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidDeviceOwnerEnrollmentProfiles/{androidDeviceOwnerEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidDeviceOwnerEnrollmentProfile" }, { - "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkAppConfigurationSchemas/{androidForWorkAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkAppConfigurationSchema" }, { - "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkEnrollmentProfiles/{androidForWorkEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkEnrollmentProfile" }, { - "Uri": "/deviceManagement/androidForWorkSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidForWorkSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidForWorkSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidForWorkSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidForWorkSettings" }, { - "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidManagedStoreAccountEnterpriseSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAccountEnterpriseSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAccountEnterpriseSettings" }, { - "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAndroidManagedStoreAppConfigurationSchema", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/androidManagedStoreAppConfigurationSchemas/{androidManagedStoreAppConfigurationSchema-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedStoreAppConfigurationSchema" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -479867,339 +502101,362 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementApplePushNotificationCertificate", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppleUserInitiatedEnrollmentProfile" }, { - "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAppleUserInitiatedEnrollmentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/appleUserInitiatedEnrollmentProfiles/{appleUserInitiatedEnrollmentProfile-id}/assignments/{appleEnrollmentProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppleEnrollmentProfileAssignment" }, { - "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAssignmentFilter", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/assignmentFilters/{deviceAndAppManagementAssignmentFilter-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceAndAppManagementAssignmentFilter" }, { - "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuditEvent" }, { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAutopilotEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotEvent" }, { - "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementAutopilotEventPolicyStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/autopilotEvents/{deviceManagementAutopilotEvent-id}/policyStatusDetails/{deviceManagementAutopilotPolicyStatusDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAutopilotPolicyStatusDetail" }, { - "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCartToClassAssociation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/cartToClassAssociations/{cartToClassAssociation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCartToClassAssociation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCartToClassAssociation" }, { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingCategory" }, { - "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/categories/{deviceManagementSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComanagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/comanagedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementComanagementEligibleDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/comanagementEligibleDevices/{comanagementEligibleDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -480218,21 +502475,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementComanagementEligibleDevice", + "OutputType": "IMicrosoftGraphComanagementEligibleDevice" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComanagementEligibleDevice", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -480251,117 +502509,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementComplianceManagementPartner", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementCompliancePolicy" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/scheduledActionsForRule/{deviceManagementComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceManagementComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem", - "Method": "PATCH", - "ApiReferenceLink": null + ], + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementComplianceActionItem" }, { - "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementCompliancePolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/compliancePolicies/{deviceManagementCompliancePolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementComplianceSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/complianceSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -480380,131 +502643,141 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaDeviceManagementConditionalAccessSetting", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicy" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/assignments/{deviceManagementConfigurationPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyAssignment" }, { - "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicies/{deviceManagementConfigurationPolicy-id}/settings/{deviceManagementConfigurationSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSetting" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationPolicyTemplate" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplateSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}/settingDefinitions/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationPolicyTemplateSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationPolicyTemplates/{deviceManagementConfigurationPolicyTemplate-id}/settingTemplates/{deviceManagementConfigurationSettingTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingTemplate" }, { - "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementConfigurationSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/configurationSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDataSharingConsent", + "ApiReferenceLink": null, "Uri": "/deviceManagement/dataSharingConsents/{dataSharingConsent-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -480523,101 +502796,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDataSharingConsent", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataSharingConsent", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDataSharingConsent" }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDepOnboardingSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphDepOnboardingSetting" }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentProfile" }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/updateDeviceProfileAssignment", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingEnrollmentProfileDeviceProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/enrollmentProfiles/{enrollmentProfile-id}/updateDeviceProfileAssignment", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDepOnboardingSettingImportedAppleDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/depOnboardingSettings/{depOnboardingSetting-id}/importedAppleDeviceIdentities/{importedAppleDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedAppleDeviceIdentity" }, { - "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDerivedCredential", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/derivedCredentials/{deviceManagementDerivedCredentialSettings-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDerivedCredentialSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -480636,21 +502915,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -480669,444 +502949,472 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceCategory", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/refreshDeviceComplianceReportSummarization", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceComplianceReportSummarization", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/refreshDeviceComplianceReportSummarization", + "ApiVersion": "beta", "Variants": [ "Refresh" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationConflictSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationConflictSummary/{deviceConfigurationConflictSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationConflictSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/groupAssignments/{deviceConfigurationGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationGroupAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationManagedDeviceCertificateState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationsAllManagedDeviceCertificateStates/{managedAllDeviceCertificateState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAllDeviceCertificateState" }, { - "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationProfiles/{deviceConfigurationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationProfile" }, { - "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationRestrictedAppViolation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationRestrictedAppsViolations/{restrictedAppsViolation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRestrictedAppsViolation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRestrictedAppsViolation" }, { - "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationUserStateSummaries", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStateSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -481125,21 +503433,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -481158,21 +503467,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceHealthScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -481191,21 +503501,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScript", + "OutputType": "IMicrosoftGraphDeviceHealthScript" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScript", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/assignments/{deviceHealthScriptAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -481224,21 +503535,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/deviceRunStates/{deviceHealthScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -481257,21 +503569,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/updateGlobalScript", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/updateGlobalScript", + "Module": "Beta.DeviceManagement.Actions", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -481290,21 +503603,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Actions", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptGlobalScript", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceHealthScripts/{deviceHealthScript-id}/runSummary", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.Read.All", @@ -481323,21 +503637,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceHealthScriptRunSummary", + "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceShellScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptRunSummary", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -481356,21 +503671,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScript", + "OutputType": "IMicrosoftGraphDeviceShellScript" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceShellScriptAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceShellScript", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -481389,21 +503705,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -481422,21 +503739,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -481455,21 +503773,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementDeviceShellScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -481488,101 +503807,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementDeviceShellScriptUserRunState", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" }, { - "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDeviceShellScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceShellScripts/{deviceShellScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementDomainJoinConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/domainJoinConnectors/{deviceManagementDomainJoinConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementDomainJoinConnector" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePool", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePool" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePoolAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/assignments/{embeddedSIMActivationCodePoolAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimActivationCodePoolAssignment" }, { - "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementEmbeddedSimActivationCodePoolDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/embeddedSIMActivationCodePools/{embeddedSIMActivationCodePool-id}/deviceStates/{embeddedSIMDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmbeddedSimDeviceState" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementExchangeConnector", + "ApiReferenceLink": null, "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -481601,21 +503926,24 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementExchangeConnector", + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", + "Update1", "UpdateExpanded", + "UpdateExpanded1", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -481634,26 +503962,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicy", - "Variants": [ - "Update", - "Update1", - "UpdateExpanded", - "UpdateExpanded1", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementExchangeOnPremisesPolicy" }, { - "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementExchangeOnPremisePolicyConditionalAccessSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeOnPremisesPolicies/{deviceManagementExchangeOnPremisesPolicy-id}/conditionalAccessSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -481662,733 +503979,789 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { - "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyCategories/{groupPolicyCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyCategory" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyConfiguration" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/assignments/{groupPolicyConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyConfigurationAssignment" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionValue" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationDefinitionValuePresentationValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/definitionValues/{groupPolicyDefinitionValue-id}/presentationValues/{groupPolicyPresentationValue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentationValue" }, { - "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/updateDefinitionValues", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyConfigurationMultipleDefinitionValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyConfigurations/{groupPolicyConfiguration-id}/updateDefinitionValues", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitionFiles/{groupPolicyDefinitionFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionNextVersionDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/nextVersionDefinition/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyDefinition" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionNextVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/nextVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyDefinitionPreviouVersionDefinitionPresentation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyDefinitions/{groupPolicyDefinition-id}/previousVersionDefinition/presentations/{groupPolicyPresentation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyPresentation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyPresentation" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyMigrationReport" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportGroupPolicySettingMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/groupPolicySettingMappings/{groupPolicySettingMapping-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicySettingMapping", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicySettingMapping" }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/updateScopeTags", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/updateScopeTags", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyMigrationReportUnsupportedGroupPolicyExtension", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyMigrationReports/{groupPolicyMigrationReport-id}/unsupportedGroupPolicyExtensions/{unsupportedGroupPolicyExtension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnsupportedGroupPolicyExtension" }, { - "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyObjectFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyObjectFiles/{groupPolicyObjectFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyObjectFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyObjectFile" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyUploadedDefinitionFile" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileGroupPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/groupPolicyOperations/{groupPolicyOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupPolicyOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupPolicyOperation" }, { - "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/updateLanguageFiles", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementGroupPolicyUploadedDefinitionFileLanguageFile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/groupPolicyUploadedDefinitionFiles/{groupPolicyUploadedDefinitionFile-id}/updateLanguageFiles", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementImportedDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedDeviceIdentities/{importedDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedDeviceIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedDeviceIdentity" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntent" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/assignments/{deviceManagementIntentAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentAssignment" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentSettingCategory" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategorySetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/categories/{deviceManagementIntentSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceSettingStateSummaries/{deviceManagementIntentDeviceSettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceSettingStateSummary" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStates/{deviceManagementIntentDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceState" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/deviceStateSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentDeviceStateSummary" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/updateSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementIntentMultipleSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/updateSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentUserState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStates/{deviceManagementIntentUserState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserState" }, { - "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntentUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intents/{deviceManagementIntent-id}/userStateSummary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementIntentUserStateSummary" }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntuneBrandingProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIntuneBrandingProfile" }, { - "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIntuneBrandingProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/intuneBrandingProfiles/{intuneBrandingProfile-id}/assignments/{intuneBrandingProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIntuneBrandingProfileAssignment" }, { - "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateAccountSummary" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateCategorySummary" }, { - "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMacOSSoftwareUpdateAccountSummaryCategorySummaryStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/macOSSoftwareUpdateAccountSummaries/{macOSSoftwareUpdateAccountSummary-id}/categorySummaries/{macOSSoftwareUpdateCategorySummary-id}/updateStateSummaries/{macOSSoftwareUpdateStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMacOSSoftwareUpdateStateSummary" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementManagedDevice", + "ApiReferenceLink": null, "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -482407,357 +504780,379 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementManagedDevice", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCleanupRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceCleanupRules/{managedDeviceCleanupRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceCleanupRule" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceEncryptionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDeviceEncryptionStates/{managedDeviceEncryptionState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceEncryptionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsDeviceAccount", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelConfigurations/{microsoftTunnelConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelHealthThreshold", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelHealthThresholds/{microsoftTunnelHealthThreshold-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelHealthThreshold" }, { - "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelServerLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelServerLogCollectionResponses/{microsoftTunnelServerLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServerLogCollectionResponse" }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSite", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelSite" }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelConfiguration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelConfiguration" }, { - "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMicrosoftTunnelSiteMicrosoftTunnelServer", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/microsoftTunnelSites/{microsoftTunnelSite-id}/microsoftTunnelServers/{microsoftTunnelServer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftTunnelServer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftTunnelServer" }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -482776,21 +505171,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -482809,115 +505205,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementMobileThreatDefenseConnector", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" }, { - "Uri": "/deviceManagement/monitoring", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoring", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementMonitoring", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementMonitoring" }, { - "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoringAlertRecord", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRecords/{alertRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAlertRecord" }, { - "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementMonitoringAlertRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/monitoring/alertRules/{alertRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementAlertRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementAlertRule" }, { - "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNdeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/ndesConnectors/{ndesConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNdesConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphNdesConnector" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -482936,21 +505339,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRemoteActionAudit", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteActionAudits/{remoteActionAudit-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -482969,21 +505373,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementRemoteActionAudit", + "OutputType": "IMicrosoftGraphRemoteActionAudit" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteActionAudit", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -483002,21 +505407,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483051,51 +505455,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Reports", - "Command": "Update-MgBetaDeviceManagementReport", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementReports", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementResourceAccessProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileBase" }, { - "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementResourceAccessProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBase-id}/assignments/{deviceManagementResourceAccessProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementResourceAccessProfileAssignment" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -483114,37 +505523,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementResourceOperation", + "OutputType": "IMicrosoftGraphResourceOperation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementReusableSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition" }, { - "Uri": "/deviceManagement/reusableSettings/{deviceManagementConfigurationSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementReusableSetting", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementConfigurationSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -483163,21 +505574,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -483196,21 +505608,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleDefinition", + "OutputType": "IMicrosoftGraphRoleDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -483229,21 +505642,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleDefinitionRoleAssignment", + "OutputType": "IMicrosoftGraphRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRoleScopeTag", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}", + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483262,53 +505676,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleScopeTag", + "OutputType": "IMicrosoftGraphRoleScopeTag" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementRoleScopeTagAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTag", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment" }, { - "Uri": "/deviceManagement/roleScopeTags/{roleScopeTag-id}/assignments/{roleScopeTagAutoAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementRoleScopeTagAssignment", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScript", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleScopeTagAutoAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementScript" }, { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScript", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScriptAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScript", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/assignments/{deviceManagementScriptAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483327,21 +505744,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScriptDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483360,21 +505778,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptDeviceRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScriptGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/groupAssignments/{deviceManagementScriptGroupAssignment-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483393,21 +505812,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptGroupAssignment", + "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScriptUserRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptGroupAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483426,21 +505846,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptUserRunState", + "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptUserState", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementScripts/{deviceManagementScript-id}/userRunStates/{deviceManagementScriptUserState-id}/deviceRunStates/{deviceManagementScriptDeviceState-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483459,293 +505880,311 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementScriptUserRunStateDeviceRunState", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementScriptDeviceState" }, { - "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementSettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableTo", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplate" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTemplateSettingCategory" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategoryRecommendedSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/recommendedSettings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToCategorySettingDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/categories/{deviceManagementTemplateSettingCategory-id}/settingDefinitions/{deviceManagementSettingDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingDefinition" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateMigratableToSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/migratableTo/{deviceManagementTemplate-id1}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTemplateSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/templates/{deviceManagementTemplate-id}/settings/{deviceManagementSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementSettingInstance" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTermAndConditionGroupAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/groupAssignments/{termsAndConditionsGroupAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsGroupAssignment" }, { - "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", + "ApiReferenceLink": null, "Uri": "/deviceManagement/userExperienceAnalyticsAnomaly/{userExperienceAnalyticsAnomaly-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483764,70 +506203,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomaly", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomaly" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomalyCorrelationGroupOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyCorrelationGroupOverview/{userExperienceAnalyticsAnomalyCorrelationGroupOverview-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyCorrelationGroupOverview" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAnomalyDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAnomalyDevice/{userExperienceAnalyticsAnomalyDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483846,21 +506254,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAnomalyDevice" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483879,21 +506288,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersion/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483912,21 +506322,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersion" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483945,21 +506356,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -483978,21 +506390,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484011,21 +506424,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484044,21 +506458,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484077,21 +506492,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484110,21 +506526,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484143,35 +506560,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484190,21 +506592,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484223,21 +506643,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthAppImpact", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthAppImpact/{userExperienceAnalyticsBatteryHealthAppImpact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484256,19 +506677,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthAppImpact" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthCapacityDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthCapacityDetails", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484287,21 +506709,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthCapacityDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceAppImpact", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceAppImpact/{userExperienceAnalyticsBatteryHealthDeviceAppImpact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484320,21 +506743,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceAppImpact" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDevicePerformance/{userExperienceAnalyticsBatteryHealthDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484353,21 +506777,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthDeviceRuntimeHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory/{userExperienceAnalyticsBatteryHealthDeviceRuntimeHistory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484386,21 +506811,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthDeviceRuntimeHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthModelPerformance/{userExperienceAnalyticsBatteryHealthModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484419,21 +506845,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthModelPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthOSPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthOsPerformance/{userExperienceAnalyticsBatteryHealthOsPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484452,19 +506879,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthOSPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticBatteryHealthRuntimeDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBatteryHealthRuntimeDetails", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484483,37 +506911,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategory", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBatteryHealthRuntimeDetails" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484532,21 +506945,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484565,21 +506996,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484598,8 +507030,15 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceScope", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScope", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -484608,13 +507047,7 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484633,21 +507066,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScope" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484666,21 +507100,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484699,21 +507134,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484732,37 +507168,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484781,21 +507202,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceTimelineEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceTimelineEvent/{userExperienceAnalyticsDeviceTimelineEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceTimelineEvent" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticDeviceWithoutCloudIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicesWithoutCloudIdentity/{userExperienceAnalyticsDeviceWithoutCloudIdentity-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484814,21 +507253,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceWithoutCloudIdentity" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticImpactingProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsImpactingProcess/{userExperienceAnalyticsImpactingProcess-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484847,21 +507287,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsImpactingProcess" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484880,21 +507321,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484913,21 +507355,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticNotAutopilotReadyDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsNotAutopilotReadyDevice/{userExperienceAnalyticsNotAutopilotReadyDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484946,19 +507389,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsNotAutopilotReadyDevice" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -484977,21 +507421,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticRemoteConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsRemoteConnection/{userExperienceAnalyticsRemoteConnection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485010,21 +507455,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsRemoteConnection" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticResourcePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsResourcePerformance/{userExperienceAnalyticsResourcePerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485043,21 +507489,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsResourcePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485076,19 +507523,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485107,21 +507555,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485140,21 +507589,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -485173,163 +507623,205 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementUserPfxCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userPfxCertificates/{userPFXCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserPfxCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserPfxCertificate" }, { - "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointBulkAction", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/bulkActions/{cloudPcBulkAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcBulkAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcBulkAction" }, { - "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointCrossCloudGovernmentOrganizationMapping", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/crossCloudGovernmentOrganizationMapping", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcCrossCloudGovernmentOrganizationMapping" }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointExternalPartnerSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/externalPartnerSettings/{cloudPcExternalPartnerSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExternalPartnerSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointFrontLineServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/frontLineServicePlans/{cloudPcFrontLineServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcFrontLineServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/updateAdDomainPassword", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementVirtualEndpointOnPremiseConnectionAdDomainPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta", + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}/updateAdDomainPassword", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/cloudpconpremisesconnection-updateaddomainpassword?view=graph-rest-beta" + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/virtualEndpoint/organizationSettings", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement.Administration", "Permissions": [ { "Name": "CloudPC.ReadWrite.All", @@ -485348,335 +507840,358 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Administration", - "Command": "Update-MgBetaDeviceManagementVirtualEndpointOrganizationSetting", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphCloudPcOrganizationSettings" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointReport", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcReports", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcReports" }, { - "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointReportExportJob", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/reports/exportJobs/{cloudPcExportJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcExportJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcExportJob" }, { - "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/servicePlans/{cloudPcServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcServicePlan", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSharedUseServicePlan", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/sharedUseServicePlans/{cloudPcSharedUseServicePlan-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSharedUseServicePlan" }, { - "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSnapshot", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/snapshots/{cloudPcSnapshot-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSnapshot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSnapshot" }, { - "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointSupportedRegion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/supportedRegions/{cloudPcSupportedRegion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcSupportedRegion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcSupportedRegion" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfile" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignedDevices/{windowsAutopilotDeviceIdentity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeploymentProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeploymentProfiles/{windowsAutopilotDeploymentProfile-id}/assignments/{windowsAutopilotDeploymentProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotDeploymentProfileAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", - "Permissions": [], - "Module": "Beta.DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsAutopilotSettings", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsAutopilotSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsAutopilotSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsAutopilotSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsAutopilotSettings" }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsFeatureUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfile" }, { - "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsFeatureUpdateProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsFeatureUpdateProfiles/{windowsFeatureUpdateProfile-id}/assignments/{windowsFeatureUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsFeatureUpdateProfileAssignment" }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -485695,21 +508210,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformation", + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "Module": "Beta.DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -485728,497 +508244,545 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement", - "Command": "Update-MgBetaDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsQualityUpdateProfile", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfile" }, { - "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceManagementWindowsQualityUpdateProfileAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsQualityUpdateProfiles/{windowsQualityUpdateProfile-id}/assignments/{windowsQualityUpdateProfileAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsQualityUpdateProfileAssignment" }, { - "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/directory", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectory", + "ApiReferenceLink": null, + "Uri": "/directory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectory" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directory/attributeSets/{attributeSet-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeSet" }, { - "Uri": "/directory/certificateAuthorities", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityPath", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCertificateAuthorityPath" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCertificateBasedApplicationConfiguration" }, { - "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryCertificateAuthorityCertificateBasedApplicationConfigurationTrustedCertificateAuthority", + "ApiReferenceLink": null, + "Uri": "/directory/certificateAuthorities/certificateBasedApplicationConfigurations/{certificateBasedApplicationConfiguration-id}/trustedCertificateAuthorities/{certificateAuthorityAsEntity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [ + { + "Name": "AppCertTrustConfiguration.Read.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "AppCertTrustConfiguration.ReadWrite.All", + "Description": "Consent name unavailable", + "FullDescription": "Consent description unavailable", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphCertificateAuthorityAsEntity" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAllowedValue" }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/externalUserProfiles/{externalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalUserProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalUserProfile" }, { - "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/directory/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/directory/impactedResources/{impactedResource-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryInboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/inboundSharedUserProfiles/{inboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInboundSharedUserProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInboundSharedUserProfile" }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "Beta.DirectoryObjects", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryOutboundSharedUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutboundSharedUserProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutboundSharedUserProfile" }, { - "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryOutboundSharedUserProfileTenant", + "ApiReferenceLink": null, + "Uri": "/directory/outboundSharedUserProfiles/{outboundSharedUserProfile-userId}/tenants/{tenantReference-tenantId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryPendingExternalUserProfile", + "ApiReferenceLink": null, + "Uri": "/directory/pendingExternalUserProfiles/{pendingExternalUserProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPendingExternalUserProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPendingExternalUserProfile" }, { - "Uri": "/directory/recommendations/{recommendation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRecommendation", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations/{recommendation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecommendation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecommendation" }, { - "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRecommendationImpactedResource", + "ApiReferenceLink": null, + "Uri": "/directory/recommendations/{recommendation-id}/impactedResources/{impactedResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphImpactedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphImpactedResource" }, { - "Uri": "/directoryRoles/{directoryRole-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleByRoleTemplateId", + "ApiReferenceLink": null, + "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDirectorySetting", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-update?view=graph-rest-beta", "Uri": "/settings/{directorySetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -486237,213 +508801,226 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaDirectorySetting", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/directorysetting-update?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectorySettingTemplate", + "ApiReferenceLink": null, + "Uri": "/directorySettingTemplates/{directorySettingTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySettingTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectorySettingTemplate" }, { - "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectorySharedEmailDomain", + "ApiReferenceLink": null, + "Uri": "/directory/sharedEmailDomains/{sharedEmailDomain-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomain", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomain" }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDirectorySubscriptionByOcpSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(ocpSubscriptionId='{ocpSubscriptionId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/domains/{domain-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-beta", + "Uri": "/domains/{domain-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomain", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-beta" + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDomainSharedEmailDomainInvitation", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/sharedEmailDomainInvitations/{sharedEmailDomainInvitation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedEmailDomainInvitation" }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -486470,213 +509047,226 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Update-MgBetaDriveItem", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -486703,677 +509293,719 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Files", - "Command": "Update-MgBetaDriveItemPermission", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/education/classes/{educationClass-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487392,37 +510024,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentCategory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487441,53 +510075,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentDefault", + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentResource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentResourceDependentResource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487506,21 +510143,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentRubric", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487539,37 +510177,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSetting", + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSettingGradingCategory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentSettingGradingScheme", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingSchemes/{educationGradingScheme-id}", + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487588,37 +510228,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSettingGradingScheme", + "OutputType": "IMicrosoftGraphEducationGradingScheme" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationGradingScheme", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSubmission", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -487637,291 +510279,343 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationClassAssignmentSubmissionOutcome", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/me", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMe", + "ApiReferenceLink": null, + "Uri": "/education/me", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -487940,356 +510634,368 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Education", - "Command": "Update-MgBetaEducationMeRubric", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/user/mailboxSettings", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationMeUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/me/user/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationRoot", + "ApiReferenceLink": null, + "Uri": "/education", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRoot" }, { - "Uri": "/education/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationSchool", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { - "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationSchoolAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfile", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfile" }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfileError", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/errors/{educationSynchronizationError-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationError", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationError" }, { - "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationSynchronizationProfileStatus", + "ApiReferenceLink": null, + "Uri": "/education/synchronizationProfiles/{educationSynchronizationProfile-id}/profileStatus", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSynchronizationProfileStatus" }, { - "Uri": "/education/users/{educationUser-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}/dependentResources/{educationAssignmentResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserAssignmentSubmissionSubmittedResourceDependentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}/dependentResources/{educationSubmissionResource-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Beta.Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/reprocess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignments/{accessPackageAssignment-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488298,96 +511004,102 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionHandler", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionHandlers/{customExtensionHandler-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionHandler", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionHandler" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAccessPackageAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488396,96 +511108,102 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalogAccessPackageCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/accessPackageCustomWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageCatalogCustomAccessPackageWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageCatalogs/{accessPackageCatalog-id}/customAccessPackageWorkflowExtensions/{customAccessPackageWorkflowExtension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAccessPackageWorkflowExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageResourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/accessPackageResourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaEntitlementManagementAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "beta", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -488494,121 +511212,139 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "Uri": "/identityGovernance/entitlementManagement/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSubject", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects/{accessPackageSubject-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaEntitlementManagementSubjectByObjectId", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/subjects(objectId='{objectId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessPackageSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageSubject" }, { - "Uri": "/external", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternal", + "ApiReferenceLink": null, + "Uri": "/external", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternal", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternal" }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalAuthorizationSystem", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationSystem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationSystem" }, { - "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalAuthorizationSystemDataCollectionInfo", + "ApiReferenceLink": null, + "Uri": "/external/authorizationSystems/{authorizationSystem-id}/dataCollectionInfo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataCollectionInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataCollectionInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -488627,21 +511363,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaExternalConnection", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -488660,85 +511397,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaExternalConnectionGroup", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { - "Uri": "/external/connections/{externalConnection-id}/quota", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalConnectionQuota", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/quota", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionQuota" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaExternalConnectionSchema", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/schema", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -488757,454 +511499,472 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaExternalConnectionSchema", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalConnectorsSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsSchema" }, { - "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataConnector", + "ApiReferenceLink": null, + "Uri": "/external/industryData/dataConnectors/{industryDataConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataConnector" }, { - "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataInboundFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/inboundFlows/{inboundFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataInboundFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataInboundFlow" }, { - "Uri": "/external/industryData/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOperation", + "ApiReferenceLink": null, + "Uri": "/external/industryData/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOutboundProvisioningFlowSet", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataOutboundProvisioningFlowSet" }, { - "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataOutboundProvisioningFlowSetProvisioningFlow", + "ApiReferenceLink": null, + "Uri": "/external/industryData/outboundProvisioningFlowSets/{outboundProvisioningFlowSet-id}/provisioningFlows/{provisioningFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataProvisioningFlow" }, { - "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataReferenceDefinition", + "ApiReferenceLink": null, + "Uri": "/external/industryData/referenceDefinitions/{referenceDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataReferenceDefinition" }, { - "Uri": "/external/industryData/roleGroups/{roleGroup-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataRoleGroup", + "ApiReferenceLink": null, + "Uri": "/external/industryData/roleGroups/{roleGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataRoleGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataRoleGroup" }, { - "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataSourceSystem", + "ApiReferenceLink": null, + "Uri": "/external/industryData/sourceSystems/{sourceSystemDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataSourceSystemDefinition" }, { - "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaExternalIndustryDataYear", + "ApiReferenceLink": null, + "Uri": "/external/industryData/years/{yearTimePeriodDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphIndustryDataYearTimePeriodDefinition" }, { - "Uri": "/financials", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancial", + "ApiReferenceLink": null, + "Uri": "/financials", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinancials", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinancials" }, { - "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCountryRegion", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/countriesRegions/{countryRegion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCountryRegion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCountryRegion" }, { - "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/currencies/{currency-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPaymentJournal", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPaymentJournal" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPayment", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomerPayment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomerPayment" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentJournalCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPaymentJournals/{customerPaymentJournal-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489215,16 +511975,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customerPayments/{customerPayment-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489235,112 +511996,119 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/customers/{customer-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyEmployee", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmployee", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphEmployee" }, { - "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyEmployeePicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/employees/{employee-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyInformation", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/companyInformation/{companyInformation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCompanyInformation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanyInformation" }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/itemCategories/{itemCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489351,48 +512119,51 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/items/{item-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/journals/{journal-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyJournal", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journals/{journal-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournal", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournal" }, { - "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyJournalLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/journalLines/{journalLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489403,96 +512174,102 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphJournalLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphJournalLine" }, { - "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentMethods/{paymentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/paymentTerms/{paymentTerm-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoice" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489503,16 +512280,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPurchaseInvoiceLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPurchaseInvoiceLine" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489523,16 +512301,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489543,16 +512322,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoiceLines/{purchaseInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -489563,496 +512343,527 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyPurchaseInvoiceVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/purchaseInvoices/{purchaseInvoice-id}/vendor/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemo", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemo" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesCreditMemoLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesCreditMemoLine" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleCreditMemoSaleCreditMemoLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesCreditMemos/{salesCreditMemo-id}/salesCreditMemoLines/{salesCreditMemoLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoice", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoice" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490063,16 +512874,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesInvoiceLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesInvoiceLine" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490083,16 +512895,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490103,16 +512916,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoiceLines/{salesInvoiceLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490123,176 +512937,187 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoicePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleInvoiceShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesInvoices/{salesInvoice-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrder", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrder" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490303,16 +513128,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesOrderLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesOrderLine" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490323,16 +513149,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490343,16 +513170,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrderLines/{salesOrderLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490363,160 +513191,170 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleOrderPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesOrders/{salesOrder-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuote", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuote" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomer", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomer" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteCustomerShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/customer/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLine", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490527,16 +513365,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSalesQuoteLine", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphSalesQuoteLine" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItem", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490547,16 +513386,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItem" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItemCategory", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/itemCategory", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490567,16 +513407,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemCategory" }, { - "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteLineItemPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuoteLines/{salesQuoteLine-id}/item/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -490587,189 +513428,211 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuotePaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanySaleQuoteShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/salesQuotes/{salesQuote-id}/shipmentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyShipmentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/shipmentMethods/{shipmentMethod-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShipmentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphShipmentMethod" }, { - "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyTaxArea", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxAreas/{taxArea-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxArea", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxArea" }, { - "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyTaxGroup", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/taxGroups/{taxGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTaxGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphTaxGroup" }, { - "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyUnitOfMeasure", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/unitsOfMeasure/{unitOfMeasure-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnitOfMeasure", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnitOfMeasure" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendor", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVendor", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphVendor" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorCurrency", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/currency", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCurrency", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphCurrency" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPaymentMethod", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentMethod", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentMethod" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPaymentTerm", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/paymentTerm", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPaymentTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPaymentTerm" }, { - "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", - "Permissions": [], - "Module": "Beta.Financials", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaFinancialCompanyVendorPicture", + "ApiReferenceLink": null, + "Uri": "/financials/companies/{company-id}/vendors/{vendor-id}/picture/{picture-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPicture", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Financials", + "Permissions": [], + "OutputType": "IMicrosoftGraphPicture" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", "Uri": "/groups/{group-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -490788,53 +513651,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroup", + "OutputType": "IMicrosoftGraphGroup" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", - "Command": "Update-MgBetaGroupAppRoleAssignment", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta", + "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroupByUniqueName", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroup", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-beta" - }, - { - "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -490853,37 +513719,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Update-MgBetaGroupCalendarEvent", + "OutputType": "IMicrosoftGraphEvent" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", - "Command": "Update-MgBetaGroupCalendarPermission", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -490902,981 +513770,1042 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroupConversationThread", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEndpoint", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -491895,120 +514824,117 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Calendar", - "Command": "Update-MgBetaGroupEvent", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-beta", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492019,141 +514945,160 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-beta" + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/planner", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupPlanner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/{directorySetting-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -492172,168 +515117,168 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroupSetting", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectorySetting", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDirectorySetting" }, { - "Uri": "/groups/{group-id}/sites/{site-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492344,16 +515289,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492364,16 +515310,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492384,16 +515331,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/recycleBin", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492404,16 +515352,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBin", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBin" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -492424,1072 +515373,1139 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBin", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBin", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBin" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRecycleBinItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRecycleBinItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/items/{recycleBinItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteRecycleBinLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/recycleBin/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493500,16 +516516,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493520,128 +516537,136 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493652,16 +516677,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493672,48 +516698,51 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493724,16 +516753,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -493744,733 +516774,789 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamOwnerMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/owners/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/photo", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -494489,451 +517575,479 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Groups", - "Command": "Update-MgBetaGroupThread", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPost", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPost", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphPost" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlow", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventsFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventsFlow" }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlowAsExternalUserSelfServiceSignUpEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/externalUsersSelfServiceSignUpEventsFlow/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventFlowIncludeApplication", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventsFlows/{authenticationEventsFlow-id}/conditions/applications/includeApplications/{authenticationConditionApplication-appId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CIdentityUserFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2CIdentityUserFlow" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2CUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2cUserFlows/{b2cIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowPreTokenIssuance", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/preTokenIssuance", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrength", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthRoot" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthAuthenticationMethodMode", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/authenticationMethodModes/{authenticationMethodModeDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodModeDetail" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyAllowedCombination", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta", + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta" + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityConditionalAccessAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationStrengths/policies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity1", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -494952,21 +518066,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -494993,21 +518108,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaIdentityConditionalAccessPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaIdentityContinuouAccessEvaluationPolicy", + "ApiReferenceLink": null, "Uri": "/identity/continuousAccessEvaluationPolicy", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -495034,1108 +518148,1170 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaIdentityContinuouAccessEvaluationPolicy", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphContinuousAccessEvaluationPolicy" }, { - "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDecisionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/decisions/{accessReviewInstanceDecisionItem-id}/instance/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id1}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/instance", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/accessReviews/policy", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/policy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/permissionsAnalytics", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalytic", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalyticsAggregation" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAw", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAwFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAwPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/aws/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzure", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzureFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticAzurePermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/azure/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcp", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsAnalytics" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcpFinding", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/findings/{finding-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFinding", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphFinding" }, { - "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionAnalyticGcpPermissionCreepIndexDistribution", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsAnalytics/gcp/permissionsCreepIndexDistributions/{permissionsCreepIndexDistribution-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsCreepIndexDistribution" }, { - "Uri": "/identityGovernance/permissionsManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsManagement", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsManagement" }, { - "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementPermissionRequestChange", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/permissionsRequestChanges/{permissionsRequestChange-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionsRequestChange", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionsRequestChange" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePermissionManagementScheduledPermissionApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/permissionsManagement/scheduledPermissionsApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/refresh", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlert", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/refresh", + "ApiVersion": "beta", "Variants": [ "Refresh", "Refresh1", @@ -496146,96 +519322,102 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertConfiguration", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertConfigurations/{unifiedRoleManagementAlertConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertConfiguration" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alertDefinitions/{unifiedRoleManagementAlertDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementAlertDefinition" }, { - "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertIncident", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/alerts/{unifiedRoleManagementAlert-id}/alertIncidents/{unifiedRoleManagementAlertIncident-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceRoleManagementAlertOperation", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/roleManagementAlerts/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -496246,263 +519428,290 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identity/identityProviders/{identityProviderBase-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/userFlows/{identityUserFlow-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/userFlows/{identityUserFlow-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlow" }, { - "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/informationProtection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtection", + "ApiReferenceLink": null, + "Uri": "/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaInvitationInvitedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-beta", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -496521,149 +519730,158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaOauth2PermissionGrant", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfile", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesPublishingProfile" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgentGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgentGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroupAgent", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/agents/{onPremisesAgent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnPremisesAgent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesAgent" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileAgentGroupPublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/agentGroups/{onPremisesAgentGroup-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileConnector", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectors/{connector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnector" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfileConnectorGroup", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/connectorGroups/{connectorGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConnectorGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectorGroup" }, { - "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOnPremisePublishingProfilePublishedResource", + "ApiReferenceLink": null, + "Uri": "/onPremisesPublishingProfiles/{onPremisesPublishingProfile-id}/publishedResources/{publishedResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPublishedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPublishedResource" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-update?view=graph-rest-beta", "Uri": "/organization/{organization-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -496690,21 +519908,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganization", + "OutputType": "IMicrosoftGraphOrganization" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationBranding", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/organization-update?view=graph-rest-beta" - }, - { - "Uri": "/organization/{organization-id}/branding", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -496723,21 +519942,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationBranding", + "OutputType": "IMicrosoftGraphOrganizationalBranding" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationBrandingLocalization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBranding", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -496756,69 +519976,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationBrandingLocalization", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/organization/{organization-id}/partnerInformation", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOrganizationPartnerInformation", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/partnerInformation", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnerInformation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnerInformation" }, { - "Uri": "/organization/{organization-id}/settings", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaOrganizationSetting", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOrganizationSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrganizationSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationSettingContactInsight", + "ApiReferenceLink": null, "Uri": "/organization/{organization-id}/settings/contactInsights", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.ReadWrite.All", @@ -496837,21 +520061,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingContactInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/itemInsights", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.ReadWrite.All", @@ -496870,37 +520095,39 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingItemInsight", + "OutputType": "IMicrosoftGraphInsightsSettings" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings" }, { - "Uri": "/organization/{organization-id}/settings/microsoftApplicationDataAccess", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingMicrosoftApplicationDataAccess", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaOrganizationSettingPersonInsight", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/settings/peopleInsights", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMicrosoftApplicationDataAccessSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/settings/peopleInsights", + "Module": "Beta.Identity.DirectoryManagement", "Permissions": [ { "Name": "Organization.ReadWrite.All", @@ -496919,99 +520146,105 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.DirectoryManagement", - "Command": "Update-MgBetaOrganizationSettingPersonInsight", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInsightsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphInsightsSettings" }, { - "Uri": "/places/{place-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPlace", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta", + "Uri": "/places/{place-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlace", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta" + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlace" }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoom", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPlaceAsRoomListWorkspace", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/workspaces/{workspace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkspace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkspace" }, { - "Uri": "/places(placeId='{placeId}')", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPlaceByPlaceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta", + "Uri": "/places(placeId='{placeId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlace", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-beta" + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlace" }, { - "Uri": "/planner", - "Permissions": [], - "Module": "Beta.Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPlanner", + "ApiReferenceLink": null, + "Uri": "/planner", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlanner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlanner" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497038,21 +520271,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497079,21 +520313,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}/details", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497120,53 +520355,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerPlanDetail", + "OutputType": "IMicrosoftGraphPlannerPlanDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerRoster", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/{plannerRoster-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerRoster" }, { - "Uri": "/planner/rosters/{plannerRoster-id}", - "Permissions": [], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerRoster", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerRosterMember", + "ApiReferenceLink": null, + "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRoster", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerRosterMember" }, { - "Uri": "/planner/rosters/{plannerRoster-id}/members/{plannerRosterMember-id}", - "Permissions": [], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerRosterMember", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerRosterMember", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497193,21 +520431,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497234,21 +520473,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskAssignedToTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497275,21 +520515,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskBucketTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerTaskDetail", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/details", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497316,21 +520557,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -497357,35 +520599,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaPlannerTaskProgressTaskBoardFormat", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" }, { - "Uri": "/policies/accessReviewPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/accessReviewPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAccessReviewPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -497404,35 +520648,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "Uri": "/policies/adminConsentRequestPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -497451,65 +520697,69 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyAppManagementPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/authenticationFlowsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -497528,21 +520778,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicy", + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicyAllowedCombination", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta", + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -497561,83 +520812,88 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicyAllowedCombination", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { - "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyAuthorizationPolicyDefaultUserRoleOverride", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy/{authorizationPolicy-id}/defaultUserRoleOverrides/{defaultUserRoleOverride-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDefaultUserRoleOverride", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDefaultUserRoleOverride" }, { - "Uri": "/policies/b2cAuthenticationMethodsPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyB2CAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/b2cAuthenticationMethodsPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2CAuthenticationMethodsPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -497656,107 +520912,112 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyClaimMappingPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy/default", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPolicyTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -497775,77 +521036,84 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyDefaultAppManagementPolicy", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { - "Uri": "/policies/directoryRoleAccessReviewPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyDirectoryRoleAccessReviewPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/directoryRoleAccessReviewPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleAccessReviewPolicy" }, { - "Uri": "/policies/externalIdentitiesPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyExternalIdentityPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/externalIdentitiesPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalIdentitiesPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { - "Uri": "/policies/federatedTokenValidationPolicy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyFederatedTokenValidationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/federatedTokenValidationPolicy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFederatedTokenValidationPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -497864,21 +521132,20 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -497897,147 +521164,158 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyIdentitySecurityDefaultEnforcementPolicy", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyMobileAppManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileAppManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyMobileDeviceManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/mobileDeviceManagementPolicies/{mobilityManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobilityManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobilityManagementPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.ReadWrite.Directory", @@ -498056,69 +521334,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyRoleManagementPolicyRule", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationPolicy" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/excludes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { - "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPolicyServicePrincipalCreationPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/servicePrincipalCreationPolicies/{servicePrincipalCreationPolicy-id}/includes/{servicePrincipalCreationConditionSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalCreationConditionSet" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -498137,21 +521419,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -498170,67 +521453,71 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaPolicyTokenLifetimePolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "Uri": "/print", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrint", + "ApiReferenceLink": null, + "Uri": "/print", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrint" }, { - "Uri": "/print/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { - "Uri": "/print/operations/{printOperation-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -498249,21 +521536,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Update-MgBetaPrintPrinter", + "OutputType": "IMicrosoftGraphPrinter" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaPrintPrinterJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "Module": "Beta.Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic.All", @@ -498290,952 +521578,1001 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Devices.CloudPrint", - "Command": "Update-MgBetaPrintPrinterJob", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printerShares/{printerShare-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShare", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJob", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printerShares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintPrinterTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/services/{printService-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "Uri": "/print/shares/{printerShare-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintShareJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Beta.Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedAccess", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccess" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResource", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceResource" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessResourceRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/resources/{governanceResource-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignment" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleAssignmentRequest" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequestRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRequestSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignmentRequests/{governanceRoleAssignmentRequest-id}/subject", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleAssignmentSubject", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleAssignments/{governanceRoleAssignment-id}/subject", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceSubject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceSubject" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleDefinitions/{governanceRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleSetting" }, { - "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedAccessRoleSettingRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/privilegedAccess/{privilegedAccess-id}/roleSettings/{governanceRoleSetting-id}/roleDefinition", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphGovernanceRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceRoleDefinition" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApproval", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedApproval" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedApprovalRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedApproval/{privilegedApproval-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedOperationEvent", + "ApiReferenceLink": null, + "Uri": "/privilegedOperationEvents/{privilegedOperationEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedOperationEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedOperationEvent" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRole", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignment" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequest", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleAssignmentRequest" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRequestRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignmentRequests/{privilegedRoleAssignmentRequest-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfo", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRole" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfoSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleAssignmentRoleInfoSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoleAssignments/{privilegedRoleAssignment-id}/roleInfo/summary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/settings", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleSetting", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSettings" }, { - "Uri": "/privilegedRoles/{privilegedRole-id}/summary", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaPrivilegedRoleSummary", + "ApiReferenceLink": null, + "Uri": "/privilegedRoles/{privilegedRole-id}/summary", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPrivilegedRoleSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedRoleSummary" }, { - "Uri": "/programs/{program-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaProgram", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-update?view=graph-rest-beta", + "Uri": "/programs/{program-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/program-update?view=graph-rest-beta" + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgram" }, { - "Uri": "/programControls/{programControl-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaProgramControl", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -499250,16 +522587,17 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControl", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControl" }, { - "Uri": "/programControls/{programControl-id}/program", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaProgramControlProgram", + "ApiReferenceLink": null, + "Uri": "/programControls/{programControl-id}/program", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -499270,283 +522608,310 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgram", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgram" }, { - "Uri": "/programControlTypes/{programControlType-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaProgramControlType", + "ApiReferenceLink": null, + "Uri": "/programControlTypes/{programControlType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProgramControlType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphProgramControlType" }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBilling", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingReconciliation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/sla/azureADAuthentication", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportSlaAzureAdAuthentication", + "ApiReferenceLink": null, + "Uri": "/reports/sla/azureADAuthentication", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAzureAdAuthentication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphAzureAdAuthentication" }, { - "Uri": "/reports/userInsights/daily", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportUserInsightDaily", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/daily", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphDailyUserInsightMetricsRoot" }, { - "Uri": "/reports/userInsights/monthly", - "Permissions": [], - "Module": "Beta.Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaReportUserInsightMonthly", + "ApiReferenceLink": null, + "Uri": "/reports/userInsights/monthly", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphMonthlyUserInsightMetricsRoot" }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaRoleManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -499565,113 +522930,122 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaRoleManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRoleManagement", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleManagement" }, { - "Uri": "/roleManagement/cloudPC", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPc", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaRoleManagementCloudPcRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -499714,37 +523088,37 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaRoleManagementCloudPcRoleDefinition", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementCloudPcRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/cloudPC/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaRoleManagementDeviceManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -499763,99 +523137,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaRoleManagementDeviceManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplicationMultiple", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRbacApplicationMultiple" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentMultiple" }, { - "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleAssignments/{unifiedRoleAssignmentMultiple-id}/appScopes/{appScope-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaRoleManagementDeviceManagementRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -499898,211 +523280,224 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.DeviceManagement.Enrollment", - "Command": "Update-MgBetaRoleManagementDeviceManagementRoleDefinition", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDeviceManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/deviceManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -500121,865 +523516,919 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.Governance", - "Command": "Update-MgBetaRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementDirectoryTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseApp", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEnterpriseAppTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/enterpriseApps/{rbacApplication-id}/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentApprovalStep", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentApprovals/{approval-id}/steps/{approvalStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphApprovalStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStep" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementEntitlementManagementTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/exchange", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchange", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacApplication" }, { - "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeCustomAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/customAppScopes/{customAppScope-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCustomAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAppScope" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeResourceNamespaceResourceActionResourceScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}/resourceScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceScope" }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeTransitiveRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Beta.DeviceManagement.Enrollment", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaRoleManagementExchangeTransitiveRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/exchange/transitiveRoleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-beta", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -500998,21 +524447,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.SchemaExtensions", - "Command": "Update-MgBetaSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-beta" - }, - { - "Uri": "/search/acronyms/{acronym-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -501031,21 +524481,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks/{bookmark-id}", + "Module": "Beta.Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -501064,365 +524515,388 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Search", - "Command": "Update-MgBetaSearchBookmark", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "Uri": "/search", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSearchEntity", + "ApiReferenceLink": null, + "Uri": "/search", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchEntity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchEntity" }, { - "Uri": "/search/qnas/{qna-id}", - "Permissions": [], - "Module": "Beta.Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchQna" }, { - "Uri": "/security/securityActions/{securityAction-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAction", + "ApiReferenceLink": null, + "Uri": "/security/securityActions/{securityAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAction" }, { - "Uri": "/security/alerts/{alert-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/alerts/updateAlerts", - "Permissions": [], "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAlert" + }, + { + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSecurityAlertMultiple", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/alert-updatealerts?view=graph-rest-beta", + "Uri": "/security/alerts/updateAlerts", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAlert", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/alert-updatealerts?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAlert" }, { - "Uri": "/security/alerts_v2/{alert-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPayload", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTraining", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTrainingCampaign", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainingCampaigns/{trainingCampaign-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingCampaign", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingCampaign" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/auditLog", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLog", + "ApiReferenceLink": null, + "Uri": "/security/auditLog", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditCoreRoot" }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLogQuery", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogQuery", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditLogQuery" }, { - "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityAuditLogQueryRecord", + "ApiReferenceLink": null, + "Uri": "/security/auditLog/queries/{auditLogQuery-id}/records/{auditLogRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuditLogRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuditLogRecord" }, { - "Uri": "/security/cases", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCasesRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501441,37 +524915,41 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCase", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", - "Permissions": [], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodian", + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-beta", + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/updateIndex", + "ApiVersion": "beta", "Variants": [ "Update", + "Update1", "UpdateExpanded", "UpdateViaIdentity", + "UpdateViaIdentity1", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/updateIndex", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501490,71 +524968,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianIndex", - "Variants": [ - "Update", - "Update1", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501573,69 +525053,75 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHold", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryHoldPolicy" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/siteSources/{siteSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseLegalHoldUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/legalHolds/{ediscoveryHoldPolicy-id}/userSources/{userSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-beta", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/updateIndex", + "ApiVersion": "beta", + "Variants": [ + "Update", + "Update1", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentity1", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501654,71 +525140,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", - "Variants": [ - "Update", - "Update1", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetFile", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/files/{ediscoveryFile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryFile" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501737,21 +525225,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501770,53 +525259,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", - "Permissions": [], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseSetting", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "Module": "Beta.Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -501835,1119 +525327,1190 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Security", - "Command": "Update-MgBetaSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCloudAppSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/cloudAppSecurityProfiles/{cloudAppSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCloudAppSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudAppSecurityProfile" }, { - "Uri": "/security/collaboration", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCollaboration", + "ApiReferenceLink": null, + "Uri": "/security/collaboration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCollaborationRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCollaborationRoot" }, { - "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityCollaborationAnalyzedEmail", + "ApiReferenceLink": null, + "Uri": "/security/collaboration/analyzedEmails/{analyzedEmail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAnalyzedEmail" }, { - "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityDomainSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/domainSecurityProfiles/{domainSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDomainSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainSecurityProfile" }, { - "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityFileSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/fileSecurityProfiles/{fileSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphFileSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphFileSecurityProfile" }, { - "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityHostSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/hostSecurityProfiles/{hostSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHostSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphHostSecurityProfile" }, { - "Uri": "/security/identities", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityIdentity", + "ApiReferenceLink": null, + "Uri": "/security/identities", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIdentityContainer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIdentityContainer" }, { - "Uri": "/security/identities/healthIssues/{healthIssue-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityIdentityHealthIssue", + "ApiReferenceLink": null, + "Uri": "/security/identities/healthIssues/{healthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHealthIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHealthIssue" }, { - "Uri": "/security/incidents/{incident-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "Uri": "/security/informationProtection/labelPolicySettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityIPSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/ipSecurityProfiles/{ipSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphIPSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphIPSecurityProfile" }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityLabelsRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityProviderTenantSetting", + "ApiReferenceLink": null, + "Uri": "/security/providerTenantSettings/{providerTenantSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProviderTenantSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphProviderTenantSetting" }, { - "Uri": "/security/rules", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityRule", + "ApiReferenceLink": null, + "Uri": "/security/rules", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRulesRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRulesRoot" }, { - "Uri": "/security/rules/detectionRules/{detectionRule-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityRuleDetectionRule", + "ApiReferenceLink": null, + "Uri": "/security/rules/detectionRules/{detectionRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityDetectionRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDetectionRule" }, { - "Uri": "/security/secureScores/{secureScore-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScore" }, { - "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityThreatIntelligence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostReputation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/threatSubmission", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmission", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatSubmissionRoot" }, { - "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionEmailThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/emailThreats/{emailThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmission" }, { - "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionEmailThreatSubmissionPolicy", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/emailThreatSubmissionPolicies/{emailThreatSubmissionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEmailThreatSubmissionPolicy" }, { - "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionFileThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/fileThreats/{fileThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFileThreatSubmission" }, { - "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityThreatSubmissionUrlThreat", + "ApiReferenceLink": null, + "Uri": "/security/threatSubmission/urlThreats/{urlThreatSubmission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUrlThreatSubmission" }, { - "Uri": "/security/tiIndicators/{tiIndicator-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityTiIndicator", + "ApiReferenceLink": null, + "Uri": "/security/tiIndicators/{tiIndicator-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { - "Uri": "/security/tiIndicators/updateTiIndicators", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSecurityTiIndicatorMultiple", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-updatetiindicators?view=graph-rest-beta", + "Uri": "/security/tiIndicators/updateTiIndicators", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTiIndicator", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/tiindicator-updatetiindicators?view=graph-rest-beta" + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTiIndicator" }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityTriggersRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSecurityUserSecurityProfile", + "ApiReferenceLink": null, + "Uri": "/security/userSecurityProfiles/{userSecurityProfile-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSecurityProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserSecurityProfile" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Beta.Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -502974,117 +526537,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaServicePrincipal", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals(appId='{appId}')", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-beta" + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaServicePrincipalPasswordSingleSignOnCredential", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-updatepasswordsinglesignoncredentials?view=graph-rest-beta", "Uri": "/servicePrincipals/{servicePrincipal-id}/updatePasswordSingleSignOnCredentials", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Applications", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -503111,312 +526681,321 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Applications", - "Command": "Update-MgBetaServicePrincipalPasswordSingleSignOnCredential", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-updatepasswordsinglesignoncredentials?view=graph-rest-beta" + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503427,16 +527006,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503447,16 +527027,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503467,16 +527048,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503487,16 +527069,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503507,16 +527090,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503527,16 +527111,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503547,16 +527132,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503567,157 +527153,177 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/shares/{sharedDriveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/sites/{site-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503736,21 +527342,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503769,21 +527376,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503802,40 +527410,32 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteContentTypeColumn", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503846,16 +527446,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503866,16 +527467,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -503886,29 +527488,41 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503927,21 +527541,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503960,21 +527575,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteListContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Beta.Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -503993,664 +527609,695 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Sites", - "Command": "Update-MgBetaSiteListContentTypeColumn", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/activities/{itemActivityOLD-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityOld", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityOld" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504661,16 +528308,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504681,128 +528329,136 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504813,16 +528469,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504833,48 +528490,51 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504885,16 +528545,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -504905,205 +528566,228 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Beta.Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/subscribedSkus/{subscribedSku-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.ChangeNotifications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-beta", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-beta" + "Module": "Beta.ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-beta", "Uri": "/teams/{team-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -505138,21 +528822,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeam", + "OutputType": "IMicrosoftGraphTeam" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeam", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-beta" - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelSettings.ReadWrite.Group", @@ -505187,21 +528872,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamChannel", + "OutputType": "IMicrosoftGraphChannel" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -505236,85 +528922,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamChannelMember", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForTeam", @@ -505381,21 +529072,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamChannelTab", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgBetaTeamInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "beta", + "Variants": [ + "Upgrade", + "UpgradeExpanded", + "UpgradeViaIdentity", + "UpgradeViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -505494,21 +529186,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamInstalledApp", - "Variants": [ - "Upgrade", - "UpgradeExpanded", - "UpgradeViaIdentity", - "UpgradeViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta" + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -505543,293 +529236,311 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamMember", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamOwnerMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/owners/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/teams/{team-id}/photo", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/teams/{team-id}/primaryChannel", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleDayNote", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/dayNotes/{dayNote-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDayNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDayNote" }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamScheduleShiftRoleDefinition", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/schedule/shiftsRoleDefinitions/{shiftsRoleDefinition-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "Schedule.ReadWrite.All", @@ -505848,101 +529559,107 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamScheduleShiftRoleDefinition", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftsRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftsRoleDefinition" }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeCard", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeCards/{timeCard-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeCard", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeCard" }, { - "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaTeamTag", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -505961,1149 +529678,1221 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Teams", - "Command": "Update-MgBetaTeamTag", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/teamwork", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamwork", + "ApiReferenceLink": null, + "Uri": "/teamwork", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamwork", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamwork" }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDevice", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDevice" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/activity", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceActivity", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/activity", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDeviceActivity" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/configuration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDeviceConfiguration" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/health", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceHealth", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/health", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceHealth", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDeviceHealth" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkDeviceOperation", + "ApiReferenceLink": null, + "Uri": "/teamwork/devices/{teamworkDevice-id}/operations/{teamworkDeviceOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamworkDeviceOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkDeviceOperation" }, { - "Uri": "/teamwork/devices/{teamworkDevice-id}/updateSoftware", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaTeamworkDeviceSoftware", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-updatesoftware?view=graph-rest-beta", + "Uri": "/teamwork/devices/{teamworkDevice-id}/updateSoftware", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/teamworkdevice-updatesoftware?view=graph-rest-beta" + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/teamsAppSettings", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamAppSetting", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAppSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamTemplate", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplate" }, { - "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkTeamTemplateDefinition", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamTemplates/{teamTemplate-id}/definitions/{teamTemplateDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamTemplateDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamTemplateDefinition" }, { - "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", - "Permissions": [], "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenants/{tenant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenant" }, { - "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAggregatedPolicyCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/aggregatedPolicyCompliances/{aggregatedPolicyCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAggregatedPolicyCompliance" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlert", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlerts/{managedTenantAlert-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlert" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertLog", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertLogs/{managedTenantAlertLog-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertLog" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertRule", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRules/{managedTenantAlertRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRule" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAlertRuleDefinition", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantAlertRuleDefinitions/{managedTenantAlertRuleDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantAlertRuleDefinition" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantApiNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantApiNotifications/{managedTenantApiNotification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantApiNotification" }, { - "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/appPerformances/{appPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantAuditEvent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/auditEvents/{auditEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsAuditEvent" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcConnection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcConnections/{cloudPcConnection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcConnection" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcDevice", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcDevices/{cloudPcDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcDevice" }, { - "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCloudPcOverview", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/cloudPcsOverview/{cloudPcOverview-tenantId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCloudPcOverview" }, { - "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantConditionalAccessPolicyCoverage", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/conditionalAccessPolicyCoverages/{conditionalAccessPolicyCoverage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsConditionalAccessPolicyCoverage" }, { - "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCredentialUserRegistrationSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/credentialUserRegistrationsSummaries/{credentialUserRegistrationsSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsCredentialUserRegistrationsSummary" }, { - "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantCustomizedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsCustomizedInformation/{tenantCustomizedInformation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantCustomizedInformation" }, { - "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDetailedInformation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantsDetailedInformation/{tenantDetailedInformation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantDetailedInformation" }, { - "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceAppPerformance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceAppPerformances/{deviceAppPerformance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceAppPerformance" }, { - "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantDeviceHealthStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/deviceHealthStatuses/{deviceHealthStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsDeviceHealthStatus" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantEmailNotification", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantEmailNotifications/{managedTenantEmailNotification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantEmailNotification" }, { - "Uri": "/tenantRelationships/managedTenants/tenantGroups/{tenantGroup-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantGroup", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantGroups/{tenantGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantGroup" }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagedDeviceCompliance", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceCompliances/{managedDeviceCompliance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceCompliance" }, { - "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagedDeviceComplianceTrend", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedDeviceComplianceTrends/{managedDeviceComplianceTrend-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedDeviceComplianceTrend" }, { - "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementAction", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActions/{managementAction-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementAction" }, { - "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementActionTenantDeploymentStatus", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementActionTenantDeploymentStatuses/{managementActionTenantDeploymentStatus-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementActionTenantDeploymentStatus" }, { - "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementIntent", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementIntents/{managementIntent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementIntent" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplate", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplates/{managementTemplate-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplate" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateCollection", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollections/{managementTemplateCollection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollection" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateCollectionTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateCollectionTenantSummaries/{managementTemplateCollectionTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateCollectionTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStep", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateSteps/{managementTemplateStep-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStep" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepTenantSummary", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepTenantSummaries/{managementTemplateStepTenantSummary-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepTenantSummary" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersion", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepVersion" }, { - "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantManagementTemplateStepVersionDeployment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managementTemplateStepVersions/{managementTemplateStepVersion-id}/deployments/{managementTemplateStepDeployment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagementTemplateStepDeployment" }, { - "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantMyRole", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/myRoles/{myRole-tenantId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsMyRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsMyRole" }, { - "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantTag", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/tenantTags/{tenantTag-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsTenantTag", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsTenantTag" }, { - "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantTicketingEndpoint", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/managedTenantTicketingEndpoints/{managedTenantTicketingEndpoint-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsManagedTenantTicketingEndpoint" }, { - "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantWindowsDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsDeviceMalwareStates/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsWindowsDeviceMalwareState" }, { - "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/{windowsProtectionState-id}", - "Permissions": [], - "Module": "Beta.ManagedTenants", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipManagedTenantWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/managedTenants/windowsProtectionStates/{windowsProtectionState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.ManagedTenants", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedTenantsWindowsProtectionState" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipMultiTenantOrganizationJoinRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { - "Uri": "/trustFramework", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTrustFramework", + "ApiReferenceLink": null, + "Uri": "/trustFramework", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFramework", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFramework" }, { - "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTrustFrameworkKeySet", + "ApiReferenceLink": null, + "Uri": "/trustFramework/keySets/{trustFrameworkKeySet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrustFrameworkKeySet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrustFrameworkKeySet" }, { - "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaTrustFrameworkPolicy", + "ApiReferenceLink": null, + "Uri": "/trustFramework/policies/{trustFrameworkPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-beta", "Uri": "/users/{user-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -507178,85 +530967,90 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUser", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUser", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-beta" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", - "Permissions": [], - "Module": "Beta.People", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserActivityStatistics", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/analytics/activityStatistics/{activityStatistics-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphActivityStatistics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityStatistics" }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Beta.Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -507275,53 +531069,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaUserAuthenticationMethod", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaUserAuthenticationOperation", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "Module": "Beta.Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -507340,56 +531137,49 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Identity.SignIns", - "Command": "Update-MgBetaUserAuthenticationPhoneMethod", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "Uri": "/users/{user-id}/authentication/signInPreferences", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserAuthenticationSignInPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/signInPreferences", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSignInPreferences", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSignInPreferences" }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -507400,2301 +531190,2455 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/chats/{chat-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChat" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaUserChatInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta", + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "beta", "Variants": [ "Upgrade", "UpgradeExpanded", "UpgradeViaIdentity", "UpgradeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderChildFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "Beta.PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/devices/{device-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceByDeviceId", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices(deviceId='{deviceId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceCommand", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/commands/{command-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCommand", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommand" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" }, { - "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" }, { - "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", - "Permissions": [], - "Module": "Beta.CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDeviceUsageRights", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/devices/{device-id}/usageRights/{usageRight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsageRight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsageRight" }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Beta.Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/events/{event-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEventExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEventExceptionOccurrenceInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/exceptionOccurrences/{event-id1}/instances/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEventInstanceExceptionOccurrenceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/exceptionOccurrences/{event-id2}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInferenceClassification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/informationProtection", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionDataLossPreventionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/dataLossPreventionPolicies/{dataLossPreventionPolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDataLossPreventionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataLossPreventionPolicy" }, { - "Uri": "/users/{user-id}/informationProtection/policy", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionPolicy" }, { - "Uri": "/users/{user-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionPolicyLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/policy/labels/{informationProtectionLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphInformationProtectionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtectionLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityLabelSublabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityLabels/{sensitivityLabel-id}/sublabels/{sensitivityLabel-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityLabel" }, { - "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionSensitivityPolicySetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/sensitivityPolicySettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSensitivityPolicySettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphSensitivityPolicySettings" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Beta.Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/users/{user-id}/insights", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemInsights", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemInsights" }, { - "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInsightShared", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/shared/{sharedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSharedInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedInsight" }, { - "Uri": "/users/{user-id}/insights/trending/{trending-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInsightTrending", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/trending/{trending-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTrending", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrending" }, { - "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserInsightUsed", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/insights/used/{usedInsight-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUsedInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUsedInsight" }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "Uri": "/users/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailboxSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceAssignmentFilterEvaluationStatusDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/assignmentFilterEvaluationStatusDetails/{assignmentFilterEvaluationStatusDetails-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssignmentFilterEvaluationStatusDetails" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceHealthScriptState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceHealthScriptStates/id='{id}',policyId='{policyId}',deviceId='{deviceId}'", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceHealthScriptPolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceMobileAppConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/managedDeviceMobileAppConfigurationStates/{managedDeviceMobileAppConfigurationState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceSecurityBaselineState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceSecurityBaselineStateSettingState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/securityBaselineStates/{securityBaselineState-id}/settingStates/{securityBaselineSettingState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityBaselineSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityBaselineSettingState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaUserManagedDeviceWindowsDeviceAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/messages/{message-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppIntentAndState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppIntentAndStates/{mobileAppIntentAndState-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppIntentAndState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppIntentAndState" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", - "Permissions": [], - "Module": "Beta.Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" }, { - "Uri": "/users/{user-id}/notifications/{notification-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserNotification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/notifications/{notification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotification" }, { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaUserOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "beta", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Beta.Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -509708,29 +533652,20 @@ "Name": "OnlineMeetings.ReadWrite.All", "Description": "Read and create online meetings", "FullDescription": "Allows the app to read and create online meetings as an application in your organization.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - } - ], - "Module": "Beta.CloudCommunications", - "Command": "Update-MgBetaUserOnlineMeeting", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -509741,16 +533676,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "Update1", @@ -509761,237 +533697,262 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistration", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistration" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistrationCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/customQuestions/{meetingRegistrationQuestion-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrationQuestion" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingRegistrationRegistrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/registration/registrants/{meetingRegistrantBase-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingRegistrantBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingRegistrantBase" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "Beta.CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskGroup" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroupTaskFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTaskFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTaskFolder" }, { - "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserOutlookTaskGroupTaskFolderTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/taskGroups/{outlookTaskGroup-id}/taskFolders/{outlookTaskFolder-id}/tasks/{outlookTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphOutlookTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookTask" }, { - "Uri": "/users/{user-id}/changePassword", - "Permissions": [], - "Module": "Beta.Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgBetaUserPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-beta", + "Uri": "/users/{user-id}/changePassword", + "ApiVersion": "beta", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-beta" + "Module": "Beta.Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserPlanner", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -510010,53 +533971,56 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Planner", - "Command": "Update-MgBetaUserPlanner", + "OutputType": "IMicrosoftGraphPlannerUser" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserPresence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/presence", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPlannerUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/users/{user-id}/presence", - "Permissions": [], - "Module": "Beta.CloudCommunications", - "Command": "Update-MgBetaUserPresence", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfile", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPresence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.People", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfile" }, { - "Uri": "/users/{user-id}/profile", - "Permissions": [], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfile", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProfile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/account/{userAccountInformation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510075,21 +534039,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAccount", + "OutputType": "IMicrosoftGraphUserAccountInformation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileAddress", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserAccountInformation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/addresses/{itemAddress-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510108,21 +534073,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAddress", + "OutputType": "IMicrosoftGraphItemAddress" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileAnniversary", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemAddress", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/anniversaries/{personAnnualEvent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510141,21 +534107,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAnniversary", + "OutputType": "IMicrosoftGraphPersonAnnualEvent" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileAward", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnualEvent", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/awards/{personAward-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510174,21 +534141,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileAward", + "OutputType": "IMicrosoftGraphPersonAward" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileCertification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAward", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/certifications/{personCertification-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510207,21 +534175,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileCertification", + "OutputType": "IMicrosoftGraphPersonCertification" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileEducationalActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonCertification", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/educationalActivities/{educationalActivity-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510240,21 +534209,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileEducationalActivity", + "OutputType": "IMicrosoftGraphEducationalActivity" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileEmail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphEducationalActivity", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/emails/{itemEmail-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510273,21 +534243,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileEmail", + "OutputType": "IMicrosoftGraphItemEmail" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileInterest", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemEmail", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/interests/{personInterest-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510306,21 +534277,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileInterest", + "OutputType": "IMicrosoftGraphPersonInterest" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileLanguage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonInterest", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/languages/{languageProficiency-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510339,21 +534311,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileLanguage", + "OutputType": "IMicrosoftGraphLanguageProficiency" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileName", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/names/{personName-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLanguageProficiency", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/names/{personName-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510372,21 +534345,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileName", + "OutputType": "IMicrosoftGraphPersonName" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileNote", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonName", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/notes/{personAnnotation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.Read", @@ -510429,21 +534403,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileNote", + "OutputType": "IMicrosoftGraphPersonAnnotation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfilePatent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonAnnotation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/patents/{itemPatent-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510462,21 +534437,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePatent", + "OutputType": "IMicrosoftGraphItemPatent" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfilePhone", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPatent", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/phones/{itemPhone-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510495,21 +534471,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePhone", + "OutputType": "IMicrosoftGraphItemPhone" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfilePosition", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPhone", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/positions/{workPosition-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510528,21 +534505,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePosition", + "OutputType": "IMicrosoftGraphWorkPosition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileProject", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWorkPosition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/projects/{projectParticipation-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510561,21 +534539,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileProject", + "OutputType": "IMicrosoftGraphProjectParticipation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfilePublication", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphProjectParticipation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/publications/{itemPublication-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510594,21 +534573,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfilePublication", + "OutputType": "IMicrosoftGraphItemPublication" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileSkill", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphItemPublication", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/skills/{skillProficiency-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510627,21 +534607,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileSkill", + "OutputType": "IMicrosoftGraphSkillProficiency" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileWebAccount", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSkillProficiency", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/webAccounts/{webAccount-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510660,21 +534641,22 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileWebAccount", + "OutputType": "IMicrosoftGraphWebAccount" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserProfileWebsite", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWebAccount", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/profile/websites/{personWebsite-id}", + "Module": "Beta.People", "Permissions": [ { "Name": "User.ReadWrite", @@ -510693,117 +534675,124 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.People", - "Command": "Update-MgBetaUserProfileWebsite", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphPersonWebsite", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPersonWebsite" }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Beta.Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/users/{user-id}/security", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSecurity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurity1", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurity1" }, { - "Uri": "/users/{user-id}/security/informationProtection", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtection" }, { - "Uri": "/users/{user-id}/security/informationProtection/labelPolicySettings", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionLabelPolicySetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/labelPolicySettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityInformationProtectionPolicySetting" }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionSensitivityLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { - "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", - "Permissions": [], - "Module": "Beta.Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSecurityInformationProtectionSensitivityLabelParent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/security/informationProtection/sensitivityLabels/{sensitivityLabel-id}/parent", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphSecuritySensitivityLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySensitivityLabel" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserSetting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -510822,69 +534811,73 @@ "IsLeastPrivilege": false } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserSetting", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserSettings" }, { - "Uri": "/users/{user-id}/settings/contactMergeSuggestions", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingContactMergeSuggestion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/contactMergeSuggestions", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphContactMergeSuggestions", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactMergeSuggestions" }, { - "Uri": "/users/{user-id}/settings/itemInsights", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingItemInsight", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/itemInsights", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserInsightsSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInsightsSettings" }, { - "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingRegionalAndLanguageSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/regionalAndLanguageSettings", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphRegionalAndLanguageSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserSettingShiftPreference", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -510903,133 +534896,141 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserSettingShiftPreference", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphShiftPreferences", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "Uri": "/users/{user-id}/settings/storage", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserStorage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserStorage" }, { - "Uri": "/users/{user-id}/settings/storage/quota", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorageQuota", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUnifiedStorageQuota", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedStorageQuota" }, { - "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingStorageQuotaService", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/storage/quota/services/{serviceStorageQuotaBreakdown-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceStorageQuotaBreakdown" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Beta.Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/teamwork", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphUserTeamwork", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Beta.Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "beta", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -511048,37 +535049,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListExtension", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -511097,37 +535100,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTaskAttachmentSession", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -511146,37 +535151,39 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTaskExtension", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBetaUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "Module": "Beta.Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -511195,725 +535202,770 @@ "IsLeastPrivilege": true } ], - "Module": "Beta.Users", - "Command": "Update-MgBetaUserTodoListTaskLinkedResource", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "beta", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhall", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventTownhall", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventTownhall" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventTownhallSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/townhalls/{virtualEventTownhall-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarPresenter", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/presenters/{virtualEventPresenter-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventPresenter", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventPresenter" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistrationByEmail", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(email='{email}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarRegistrationByUserId", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations(userId='{userId}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", - "Permissions": [], - "Module": "Beta.Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgBetaVirtualEventWebinarSessionByJoinWebUrl", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions(joinWebUrl='{joinWebUrl}')", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuDeployment", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesDeployment", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeployment" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudience", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuDeploymentAudience", + "Method": "POST", "Command": "Update-MgBetaWindowsUpdatesDeploymentAudience", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudience?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudience", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudience?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuDeploymentAudienceApplicableContent", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesDeploymentAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuDeploymentAudienceApplicableContentMatchedDevice", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesDeploymentAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudienceById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuDeploymentAudienceGraphBPreId", + "Method": "POST", "Command": "Update-MgBetaWindowsUpdatesDeploymentAudienceById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/deployments/{deployment-id}/audience/updateAudienceById", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicy", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicy", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesUpdatePolicy" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudience", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyAudience", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesDeploymentAudience", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesDeploymentAudience" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudienceApplicableContent", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyAudienceApplicableContent", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContent" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudienceApplicableContentMatchedDevice", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyAudienceApplicableContentMatchedDevice", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/applicableContent/{applicableContent-catalogEntryId}/matchedDevices/{applicableContentDeviceMatch-deviceId}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesApplicableContentDeviceMatch" }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/updateAudienceById", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudienceGraphBPreId", + "Method": "POST", "Command": "Update-MgBetaWindowsUpdatesPolicyAudienceById", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta", + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/updateAudienceById", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/windowsupdates-deploymentaudience-updateaudiencebyid?view=graph-rest-beta" + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudienceExclusion", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyAudienceExclusion", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/exclusions/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyAudienceMember", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyAudienceMember", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/audience/members/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { - "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuPolicyComplianceChange", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesPolicyComplianceChange", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatePolicies/{updatePolicy-id}/complianceChanges/{complianceChange-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesComplianceChange" }, { - "Uri": "/admin/windows/updates/products/{product-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProduct", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProduct", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProduct", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProduct" }, { - "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductEdition", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductEdition", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/editions/{edition-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesEdition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesEdition" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductKnownIssue", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductKnownIssue", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnownIssue" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductKnownIssueOriginatingKnowledgeBaseArticle", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductKnownIssueOriginatingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/originatingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductKnownIssueResolvingKnowledgeBaseArticle", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductKnownIssueResolvingKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/knownIssues/{knownIssue-id}/resolvingKnowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductRevision", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductRevision", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesProductRevision" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductRevisionCatalogEntry", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductRevisionCatalogEntry", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/catalogEntry", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesCatalogEntry" }, { - "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuProductRevisionKnowledgeBaseArticle", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesProductRevisionKnowledgeBaseArticle", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/products/{product-id}/revisions/{productRevision-id}/knowledgeBaseArticle", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesKnowledgeBaseArticle" }, { - "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuResourceConnection", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesResourceConnection", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/resourceConnections/{resourceConnection-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsUpdatesResourceConnection" }, { - "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", - "Permissions": [], - "Module": "Beta.WindowsUpdates", + "CommandAlias": "Update-MgBetaWuUpdatableAsset", + "Method": "PATCH", "Command": "Update-MgBetaWindowsUpdatesUpdatableAsset", + "ApiReferenceLink": null, + "Uri": "/admin/windows/updates/updatableAssets/{updatableAsset-id}", + "ApiVersion": "beta", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "beta", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Beta.WindowsUpdates", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusiness", + "ApiReferenceLink": null, "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -511932,21 +535984,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusiness", + "OutputType": "IMicrosoftGraphBookingBusiness" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessAppointment", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingBusiness", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/appointments/{bookingAppointment-id}", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -511981,37 +536034,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessAppointment", + "OutputType": "IMicrosoftGraphBookingAppointment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessCalendarView", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingAppointment" }, { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/calendarView/{bookingAppointment-id}", - "Permissions": [], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessCalendarView", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessCustomer", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomerBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingAppointment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customers/{bookingCustomerBase-id}", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -512046,21 +536101,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessCustomer", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessCustomQuestion", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/customQuestions/{bookingCustomQuestion-id}", + "Module": "Bookings", "Permissions": [ { "Name": "BookingsAppointment.ReadWrite.All", @@ -512087,21 +536143,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessCustomQuestion", + "OutputType": "IMicrosoftGraphBookingCustomQuestion" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessService", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCustomQuestion", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/services/{bookingService-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -512120,21 +536177,22 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessService", + "OutputType": "IMicrosoftGraphBookingService" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingBusinessStaffMember", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMemberBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingService", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/solutions/bookingBusinesses/{bookingBusiness-id}/staffMembers/{bookingStaffMemberBase-id}", + "Module": "Bookings", "Permissions": [ { "Name": "Bookings.ReadWrite.All", @@ -512153,37 +536211,39 @@ "IsLeastPrivilege": false } ], - "Module": "Bookings", - "Command": "Update-MgBookingBusinessStaffMember", + "OutputType": null + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgBookingCurrency", + "ApiReferenceLink": null, + "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphBookingCurrency" }, { - "Uri": "/solutions/bookingCurrencies/{bookingCurrency-id}", - "Permissions": [], - "Module": "Bookings", - "Command": "Update-MgBookingCurrency", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgChat", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-1.0", + "Uri": "/chats/{chat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBookingCurrency", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/chats/{chat-id}", + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -512210,21 +536270,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgChat", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-patch?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphChat" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgChatInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", "Uri": "/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "v1.0", + "Variants": [ + "Upgrade", + "UpgradeExpanded", + "UpgradeViaIdentity", + "UpgradeViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForChat", @@ -512315,53 +536376,56 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgChatInstalledApp", - "Variants": [ - "Upgrade", - "UpgradeExpanded", - "UpgradeViaIdentity", - "UpgradeViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "Uri": "/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatMember", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgChatMessage", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "Chat.ReadWrite", @@ -512396,85 +536460,90 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgChatMessage", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgChatTab", + "ApiReferenceLink": null, "Uri": "/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForChat", @@ -512517,21 +536586,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgChatTab", + "OutputType": "IMicrosoftGraphTeamsTab" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgCommunicationCallAudioRoutingGroup", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/communications/calls/{call-id}/audioRoutingGroups/{audioRoutingGroup-id}", + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.JoinGroupCall.All", @@ -512550,69 +536620,73 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Update-MgCommunicationCallAudioRoutingGroup", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAudioRoutingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAudioRoutingGroup" }, { - "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationCallContentSharingSession", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/contentSharingSessions/{contentSharingSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationCallOperation", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/operations/{commsOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCommsOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCommsOperation" }, { - "Uri": "/communications/calls/{call-id}/participants/{participant-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationCallParticipant", + "ApiReferenceLink": null, + "Uri": "/communications/calls/{call-id}/participants/{participant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphParticipant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphParticipant" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgCommunicationCallRecordingStatus", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0", "Uri": "/communications/calls/{call-id}/updateRecordingStatus", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "Calls.AccessMedia.All", @@ -512631,195 +536705,207 @@ "IsLeastPrivilege": false } ], - "Module": "CloudCommunications", - "Command": "Update-MgCommunicationCallRecordingStatus", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/call-updaterecordingstatus?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUpdateRecordingStatusOperation" }, { - "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationCallRecordSession", + "ApiReferenceLink": null, + "Uri": "/communications/callRecords/{callRecord-id}/sessions/{session-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecordsSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecordsSession" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeeting", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/communications/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/communications/presences/{presence-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCommunicationPresence", + "ApiReferenceLink": null, + "Uri": "/communications/presences/{presence-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/compliance", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgCompliance", + "ApiReferenceLink": null, + "Uri": "/compliance", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompliance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompliance" }, { - "Uri": "/contacts/{orgContact-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgContact", + "ApiReferenceLink": null, + "Uri": "/contacts/{orgContact-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrgContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOrgContact" }, { - "Uri": "/contracts/{contract-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgContract", + "ApiReferenceLink": null, + "Uri": "/contracts/{contract-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContract", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphContract" }, { - "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDataPolicyOperation", + "ApiReferenceLink": null, + "Uri": "/dataPolicyOperations/{dataPolicyOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDataPolicyOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphDataPolicyOperation" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDevice", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0", "Uri": "/devices/{device-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "Directory.AccessAsUser.All", @@ -512846,21 +536932,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgDevice", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDevice" }, { + "CommandAlias": "Update-MgDeviceAppMgt", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0", "Uri": "/deviceAppManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -512879,35 +536964,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAppManagement", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphDeviceAppManagement" }, { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtAndroidManagedAppProtection", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAndroidManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAndroidManagedAppProtection" }, { + "CommandAlias": "Update-MgDeviceAppMgtAndroidManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -512926,21 +537015,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtAndroidManagedAppProtectionAssignment", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -512959,21 +537049,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtAndroidManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/androidManagedAppProtections/{androidManagedAppProtection-id}/deploymentSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -512992,21 +537083,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementAndroidManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtDefaultManagedAppProtection", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513025,21 +537117,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtection", + "OutputType": "IMicrosoftGraphDefaultManagedAppProtection" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtDefaultManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDefaultManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513058,21 +537151,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtDefaultManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/defaultManagedAppProtections/{defaultManagedAppProtection-id}/deploymentSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513091,37 +537185,39 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementDefaultManagedAppProtectionDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtiOSManagedAppProtection", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementiOSManagedAppProtection", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosManagedAppProtection" }, { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementiOSManagedAppProtection", + "CommandAlias": "Update-MgDeviceAppMgtiOSManagedAppProtectionApp", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosManagedAppProtection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/apps/{managedMobileApp-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513140,21 +537236,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtiOSManagedAppProtectionAssignment", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513173,21 +537270,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtiOSManagedAppProtectionDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/iosManagedAppProtections/{iosManagedAppProtection-id}/deploymentSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513206,85 +537304,90 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementiOSManagedAppProtectionDeploymentSummary", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" }, { - "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedAppPolicy", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedAppPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedAppRegistration", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedAppRegistration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppRegistration" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedAppRegistrationAppliedPolicy", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedAppRegistrationAppliedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/appliedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { - "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedAppRegistrationIntendedPolicy", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedAppRegistrationIntendedPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/intendedPolicies/{managedAppPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppPolicy" }, { + "CommandAlias": "Update-MgDeviceAppMgtManagedAppRegistrationOperation", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementManagedAppRegistrationOperation", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/managedAppRegistrations/{managedAppRegistration-id}/operations/{managedAppOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513303,149 +537406,158 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementManagedAppRegistrationOperation", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedAppOperation" }, { - "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedAppStatus", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedAppStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedAppStatuses/{managedAppStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedAppStatus" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBook", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBook", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBook" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBookAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBookAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/assignments/{managedEBookAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedEBookAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedEBookAssignment" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBookDeviceState", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBookDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBookInstallSummary", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBookInstallSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/installSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEBookInstallSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphEBookInstallSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBookUserStateSummary", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBookUserStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserInstallStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserInstallStateSummary" }, { - "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtManagedEBookUserStateSummaryDeviceState", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementManagedEBookUserStateSummaryDeviceState", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/managedEBooks/{managedEBook-id}/userStateSummary/{userInstallStateSummary-id}/deviceStates/{deviceInstallState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceInstallState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceInstallState" }, { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicy", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMdmWindowsInformationProtectionPolicy" }, { + "CommandAlias": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicyAssignment", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513464,21 +537576,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513497,21 +537610,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtMdmWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mdmWindowsInformationProtectionPolicies/{mdmWindowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -513530,981 +537644,1042 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementMdmWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileApp" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsAndroidLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsAndroidLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsAndroidStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsAndroidStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/androidStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsiOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsiOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsiOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsIoStoreAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsIoStoreAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosStoreApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsIoVppAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsIoVppAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/iosVppApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSDmgAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSDmgAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSDmgAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSDmgApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMacOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMacOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/macOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedAndroidLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedAndroidLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedAndroidLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagediOSLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagediOSLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagediOSLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedIOSLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedMobileLobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsManagedMobileLobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsManagedMobileLobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/managedMobileLobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsMicrosoftStoreGraphFPreBusinessAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsMicrosoftStoreForBusinessAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/microsoftStoreForBusinessApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWin32LobAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWin32LobAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWin32LobAppContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWin32LobAppContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/win32LobApp/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowAppXAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowAppXContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowAppXContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowMobileMsiAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowMobileMsiContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsMobileMsiContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsMobileMSI/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowUniversalAppXAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowUniversalAppXCommittedContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXCommittedContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/committedContainedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersion", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersion", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContent" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionContainedApp", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionContainedApp", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/containedApps/{mobileContainedApp-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowUniversalAppXContentVersionFile", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsUniversalAppXContentVersionFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsUniversalAppX/contentVersions/{mobileAppContent-id}/files/{mobileAppContentFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppContentFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppContentFile" }, { - "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppAsWindowWebAppAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppAsWindowsWebAppAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileApps/{mobileApp-id}/windowsWebApp/assignments/{mobileAppAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppCategory", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppCategory", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppCategories/{mobileAppCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppCategory" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfiguration", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfiguration" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfigurationAssignment", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/assignments/{managedDeviceMobileAppConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationAssignment" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatus", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatuses/{managedDeviceMobileAppConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfigurationDeviceStatusSummary", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfigurationDeviceStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/deviceStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationDeviceSummary" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatus", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatuses/{managedDeviceMobileAppConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserStatus" }, { - "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtMobileAppConfigurationUserStatusSummary", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementMobileAppConfigurationUserStatusSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/mobileAppConfigurations/{managedDeviceMobileAppConfiguration-id}/userStatusSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDeviceMobileAppConfigurationUserSummary" }, { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": "Update-MgDeviceAppMgtTargetedManagedAppConfiguration", + "Method": "PATCH", "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetedManagedAppConfiguration" }, { + "CommandAlias": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationApp", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "ApiReferenceLink": null, "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/apps/{managedMobileApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514523,21 +538698,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationApp", + "OutputType": "IMicrosoftGraphManagedMobileApp" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationAssignment", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedMobileApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514556,21 +538732,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtTargetedManagedAppConfigurationDeploymentSummary", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/targetedManagedAppConfigurations/{targetedManagedAppConfiguration-id}/deploymentSummary", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514589,21 +538766,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementTargetedManagedAppConfigurationDeploymentSummary", + "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtVppToken", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementVppToken", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedAppPolicyDeploymentSummary", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/vppTokens/{vppToken-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -514622,21 +538800,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementVppToken", + "OutputType": "IMicrosoftGraphVppToken" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtWindowInformationProtectionPolicy", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVppToken", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514655,21 +538834,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicy", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtWindowInformationProtectionPolicyAssignment", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionPolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/assignments/{targetedManagedAppPolicyAssignment-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514688,21 +538868,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyAssignment", + "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtWindowInformationProtectionPolicyExemptAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetedManagedAppPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/exemptAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514721,21 +538902,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyExemptAppLockerFile", + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" + }, + { + "CommandAlias": "Update-MgDeviceAppMgtWindowInformationProtectionPolicyProtectedAppLockerFile", + "Method": "PATCH", + "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", + "ApiReferenceLink": null, + "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceAppManagement/windowsInformationProtectionPolicies/{windowsInformationProtectionPolicy-id}/protectedAppLockerFiles/{windowsInformationProtectionAppLockerFile-id}", + "Module": "Devices.CorporateManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514754,53 +538936,54 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CorporateManagement", - "Command": "Update-MgDeviceAppManagementWindowsInformationProtectionPolicyProtectedAppLockerFile", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLockerFile" }, { - "Uri": "/devices(deviceId='{deviceId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceByDeviceId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0", + "Uri": "/devices(deviceId='{deviceId}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDevice", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/device-update?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDevice" }, { - "Uri": "/devices/{device-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceExtension", + "ApiReferenceLink": null, + "Uri": "/devices/{device-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagement", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-companyterms-devicemanagement-update?view=graph-rest-1.0", "Uri": "/deviceManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -514843,19 +539026,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagement", + "OutputType": "IMicrosoftGraphDeviceManagement" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/applePushNotificationCertificate", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagement", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-companyterms-devicemanagement-update?view=graph-rest-1.0" - }, - { - "Uri": "/deviceManagement/applePushNotificationCertificate", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -514874,35 +539058,39 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementApplePushNotificationCertificate", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApplePushNotificationCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphApplePushNotificationCertificate" }, { - "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementAuditEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/auditEvents/{auditEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuditEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuditEvent" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementComplianceManagementPartner", + "ApiReferenceLink": null, "Uri": "/deviceManagement/complianceManagementPartners/{complianceManagementPartner-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -514921,21 +539109,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementComplianceManagementPartner", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphComplianceManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphComplianceManagementPartner" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementConditionalAccessSetting", + "ApiReferenceLink": null, "Uri": "/deviceManagement/conditionalAccessSettings", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -514954,19 +539141,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementConditionalAccessSetting", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnPremisesConditionalAccessSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementDetectedApp", + "ApiReferenceLink": null, "Uri": "/deviceManagement/detectedApps/{detectedApp-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -514985,21 +539175,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementDetectedApp", + "OutputType": "IMicrosoftGraphDetectedApp" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDetectedApp", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceCategories/{deviceCategory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -515018,337 +539209,358 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementDeviceCategory", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicy" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/assignments/{deviceCompliancePolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyAssignment" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicyDeviceStateSummary", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyDeviceStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatuses/{deviceComplianceDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceDeviceOverview" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRule", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceScheduledActionForRule" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyScheduledActionForRuleScheduledActionConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/scheduledActionsForRule/{deviceComplianceScheduledActionForRule-id}/scheduledActionConfigurations/{deviceComplianceActionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceActionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceActionItem" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicySettingStateSummary" }, { - "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicySettingStateSummaryDeviceComplianceSettingState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicySettingStateSummaries/{deviceCompliancePolicySettingStateSummary-id}/deviceComplianceSettingStates/{deviceComplianceSettingState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceSettingState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceSettingState" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatuses/{deviceComplianceUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserStatus" }, { - "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceCompliancePolicyUserStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceCompliancePolicies/{deviceCompliancePolicy-id}/userStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceComplianceUserOverview" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfiguration" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/assignments/{deviceConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationAssignment" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceSettingStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceSettingStateSummaries/{settingStateDeviceSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSettingStateDeviceSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSettingStateDeviceSummary" }, { - "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStateSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurationDeviceStateSummaries", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStateSummary" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatuses/{deviceConfigurationDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceStatus" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationDeviceStatusOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/deviceStatusOverview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationDeviceOverview" }, { - "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatuses/{deviceConfigurationUserStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserStatus" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", + "ApiReferenceLink": null, "Uri": "/deviceManagement/deviceConfigurations/{deviceConfiguration-id}/userStatusOverview", - "Permissions": [], + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementDeviceConfigurationUserStatusOverview", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationUserOverview", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}", + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515367,21 +539579,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfiguration", + "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceEnrollmentConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceEnrollmentConfigurations/{deviceEnrollmentConfiguration-id}/assignments/{enrollmentConfigurationAssignment-id}", + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515400,21 +539613,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementDeviceEnrollmentConfigurationAssignment", + "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementExchangeConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEnrollmentConfigurationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/exchangeConnectors/{deviceManagementExchangeConnector-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515433,53 +539647,56 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementExchangeConnector", + "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementExchangeConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Enrollment", + "Permissions": [], + "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity" }, { - "Uri": "/deviceManagement/importedWindowsAutopilotDeviceIdentities/{importedWindowsAutopilotDeviceIdentity-id}", - "Permissions": [], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgDeviceManagementImportedWindowsAutopilotDeviceIdentity", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementIoUpdateStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphImportedWindowsAutopilotDeviceIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus" }, { - "Uri": "/deviceManagement/iosUpdateStatuses/{iosUpdateDeviceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementIoUpdateStatus", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementManagedDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIosUpdateDeviceStatus", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -515498,149 +539715,158 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementManagedDevice", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceLogCollectionRequest", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgDeviceManagementManagedDeviceWindowsDeviceAccount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0", + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphMobileAppTroubleshootingEvent" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "ApiReferenceLink": null, "Uri": "/deviceManagement/mobileAppTroubleshootingEvents/{mobileAppTroubleshootingEvent-id}/appLogCollectionRequests/{appLogCollectionRequest-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -515659,21 +539885,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementMobileAppTroubleshootingEventAppLogCollectionRequest", + "OutputType": "IMicrosoftGraphAppLogCollectionRequest" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppLogCollectionRequest", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/mobileThreatDefenseConnectors/{mobileThreatDefenseConnector-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515692,53 +539919,56 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementMobileThreatDefenseConnector", + "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementNotificationMessageTemplate", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMobileThreatDefenseConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotificationMessageTemplate" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementNotificationMessageTemplate", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotificationMessageTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphLocalizedNotificationMessage" }, { - "Uri": "/deviceManagement/notificationMessageTemplates/{notificationMessageTemplate-id}/localizedNotificationMessages/{localizedNotificationMessage-id}", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementNotificationMessageTemplateLocalizedNotificationMessage", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLocalizedNotificationMessage", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/deviceManagementPartners/{deviceManagementPartner-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515757,21 +539987,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementPartner", + "OutputType": "IMicrosoftGraphDeviceManagementPartner" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementRemoteAssistancePartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/remoteAssistancePartners/{remoteAssistancePartner-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -515790,21 +540021,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRemoteAssistancePartner", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteAssistancePartner", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRemoteAssistancePartner" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementReport", + "ApiReferenceLink": null, "Uri": "/deviceManagement/reports", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Reports", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -515839,19 +540069,22 @@ "IsLeastPrivilege": false } ], - "Module": "Reports", - "Command": "Update-MgDeviceManagementReport", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementReports", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDeviceManagementReports" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementResourceOperation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/resourceOperations/{resourceOperation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -515870,21 +540103,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementResourceOperation", + "OutputType": "IMicrosoftGraphResourceOperation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceOperation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleAssignments/{deviceAndAppManagementRoleAssignment-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -515903,21 +540137,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRoleAssignment", + "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceAndAppManagementRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -515936,21 +540171,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRoleDefinition", + "OutputType": "IMicrosoftGraphRoleDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/roleDefinitions/{roleDefinition-id}/roleAssignments/{roleAssignment-id}", + "Module": "DeviceManagement.Administration", "Permissions": [ { "Name": "DeviceManagementRBAC.ReadWrite.All", @@ -515969,134 +540205,107 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Administration", - "Command": "Update-MgDeviceManagementRoleDefinitionRoleAssignment", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleAssignment" }, { - "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementTelecomExpenseManagementPartner", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/telecomExpenseManagementPartners/{telecomExpenseManagementPartner-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTelecomExpenseManagementPartner" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndCondition", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditions", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditions" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndConditionAcceptanceStatus", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/acceptanceStatuses/{termsAndConditionsAcceptanceStatus-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAcceptanceStatus" }, { - "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementTermAndConditionAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/termsAndConditions/{termsAndConditions-id}/assignments/{termsAndConditionsAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermsAndConditionsAssignment" }, { - "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/troubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", - "Permissions": [ - { - "Name": "DeviceManagementConfiguration.ReadWrite.All", - "Description": "Read and write Microsoft Intune device configuration and policies", - "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": true - }, - { - "Name": "DeviceManagementManagedDevices.ReadWrite.All", - "Description": "Read and write Microsoft Intune devices", - "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", - "IsAdmin": false, - "PermissionType": "Application", - "IsLeastPrivilege": false - } - ], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformance/{userExperienceAnalyticsAppHealthApplicationPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516115,21 +540324,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthApplicationPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDetails/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516148,21 +540358,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByAppVersionDeviceId", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByAppVersionDeviceId/{userExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516181,21 +540392,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByAppVersionDeviceId" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthApplicationPerformanceByOsversion", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthApplicationPerformanceByOSVersion/{userExperienceAnalyticsAppHealthAppPerformanceByOSVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516214,21 +540426,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthAppPerformanceByOSVersion" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDeviceModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDeviceModelPerformance/{userExperienceAnalyticsAppHealthDeviceModelPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516247,21 +540460,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDeviceModelPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformance/{userExperienceAnalyticsAppHealthDevicePerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516280,21 +540494,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthDevicePerformanceDetail", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthDevicePerformanceDetails/{userExperienceAnalyticsAppHealthDevicePerformanceDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516313,21 +540528,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthDevicePerformanceDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOSVersionPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOSVersionPerformance/{userExperienceAnalyticsAppHealthOSVersionPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516346,35 +540562,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsAppHealthOSVersionPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516393,21 +540594,39 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticAppHealthOverviewMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsAppHealthOverview/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticBaseline", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsBaselines/{userExperienceAnalyticsBaseline-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516426,37 +540645,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategory", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsBaseline" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", - "Permissions": [], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516475,21 +540679,39 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsCategory" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticCategoryMetricValue", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsCategories/{userExperienceAnalyticsCategory-id}/metricValues/{userExperienceAnalyticsMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetric" }, { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementUserExperienceAnalyticDevicePerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDevicePerformance/{userExperienceAnalyticsDevicePerformance-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516508,21 +540730,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDevicePerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceScores/{userExperienceAnalyticsDeviceScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516541,21 +540764,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceScores" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupHistory/{userExperienceAnalyticsDeviceStartupHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516574,21 +540798,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcess", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcesses/{userExperienceAnalyticsDeviceStartupProcess-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516607,21 +540832,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcess" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticDeviceStartupProcessPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsDeviceStartupProcessPerformance/{userExperienceAnalyticsDeviceStartupProcessPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516640,21 +540866,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsDeviceStartupProcessPerformance" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticMetricHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsMetricHistory/{userExperienceAnalyticsMetricHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516673,21 +540900,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsMetricHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticModelScore", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsModelScores/{userExperienceAnalyticsModelScores-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516706,19 +540934,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsModelScores" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticOverview", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsOverview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516737,21 +540966,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsOverview" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticScoreHistory", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsScoreHistory/{userExperienceAnalyticsScoreHistory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516770,19 +541000,20 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsScoreHistory" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereHardwareReadinessMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516801,21 +541032,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereHardwareReadinessMetric" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetric", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516834,21 +541066,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereMetric" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereMetricDevice", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereMetrics/{userExperienceAnalyticsWorkFromAnywhereMetric-id}/metricDevices/{userExperienceAnalyticsWorkFromAnywhereDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -516867,197 +541100,243 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereDevice" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementUserExperienceAnalyticWorkFromAnywhereModelPerformance", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/userExperienceAnalyticsWorkFromAnywhereModelPerformance/{userExperienceAnalyticsWorkFromAnywhereModelPerformance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [ + { + "Name": "DeviceManagementConfiguration.ReadWrite.All", + "Description": "Read and write Microsoft Intune device configuration and policies", + "FullDescription": "Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + }, + { + "Name": "DeviceManagementManagedDevices.ReadWrite.All", + "Description": "Read and write Microsoft Intune devices", + "FullDescription": "Allows the app to read and write the properties of devices managed by Microsoft Intune, without a signed-in user. Does not allow high impact operations such as remote wipe and password reset on the device’s owner", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": false + } + ], + "OutputType": "IMicrosoftGraphUserExperienceAnalyticsWorkFromAnywhereModelPerformance" }, { - "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointDeviceImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/deviceImages/{cloudPcDeviceImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcDeviceImage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcDeviceImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointGalleryImage", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/galleryImages/{cloudPcGalleryImage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcGalleryImage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcGalleryImage" }, { - "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointOnPremiseConnection", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/onPremisesConnections/{cloudPcOnPremisesConnection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcOnPremisesConnection" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicy", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicy" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcProvisioningPolicyAssignment" }, { - "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointProvisioningPolicyAssignmentAssignedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/provisioningPolicies/{cloudPcProvisioningPolicy-id}/assignments/{cloudPcProvisioningPolicyAssignment-id}/assignedUsers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointUserSetting", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSetting" }, { - "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", - "Permissions": [], - "Module": "DeviceManagement.Administration", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementVirtualEndpointUserSettingAssignment", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/virtualEndpoint/userSettings/{cloudPcUserSetting-id}/assignments/{cloudPcUserSettingAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement.Administration", + "Permissions": [], + "OutputType": "IMicrosoftGraphCloudPcUserSettingAssignment" }, { - "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", - "Permissions": [], - "Module": "DeviceManagement.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgDeviceManagementWindowsAutopilotDeviceIdentityDeviceProperty", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-updatedeviceproperties?view=graph-rest-1.0", + "Uri": "/deviceManagement/windowsAutopilotDeviceIdentities/{windowsAutopilotDeviceIdentity-id}/updateDeviceProperties", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-enrollment-windowsautopilotdeviceidentity-updatedeviceproperties?view=graph-rest-1.0" + "Module": "DeviceManagement.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsInformationProtectionAppLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionAppLearningSummaries/{windowsInformationProtectionAppLearningSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionAppLearningSummary" }, { - "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", - "Permissions": [], - "Module": "DeviceManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDeviceManagementWindowsInformationProtectionNetworkLearningSummary", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsInformationProtectionNetworkLearningSummaries/{windowsInformationProtectionNetworkLearningSummary-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DeviceManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsInformationProtectionNetworkLearningSummary" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementWindowsMalwareInformation", + "ApiReferenceLink": null, "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -517076,21 +541355,22 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementWindowsMalwareInformation", + "OutputType": "IMicrosoftGraphWindowsMalwareInformation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", + "ApiReferenceLink": null, + "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsMalwareInformation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/deviceManagement/windowsMalwareInformation/{windowsMalwareInformation-id}/deviceMalwareStates/{malwareStateForWindowsDevice-id}", + "Module": "DeviceManagement", "Permissions": [ { "Name": "DeviceManagementManagedDevices.ReadWrite.All", @@ -517109,387 +541389,411 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement", - "Command": "Update-MgDeviceManagementWindowsMalwareInformationDeviceMalwareState", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphMalwareStateForWindowsDevice" }, { - "Uri": "/directory", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectory", + "ApiReferenceLink": null, + "Uri": "/directory", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectory" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnitExtension", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryAdministrativeUnitScopedRoleMember", + "ApiReferenceLink": null, + "Uri": "/directory/administrativeUnits/{administrativeUnit-id}/scopedRoleMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directory/attributeSets/{attributeSet-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryAttributeSet", + "ApiReferenceLink": null, + "Uri": "/directory/attributeSets/{attributeSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttributeSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttributeSet" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryCustomSecurityAttributeDefinition", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomSecurityAttributeDefinition" }, { - "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryCustomSecurityAttributeDefinitionAllowedValue", + "ApiReferenceLink": null, + "Uri": "/directory/customSecurityAttributeDefinitions/{customSecurityAttributeDefinition-id}/allowedValues/{allowedValue-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAllowedValue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphAllowedValue" }, { - "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryDeviceLocalCredential", + "ApiReferenceLink": null, + "Uri": "/directory/deviceLocalCredentials/{deviceLocalCredentialInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLocalCredentialInfo" }, { - "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/directory/federationConfigurations/{identityProviderBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/directoryObjects/{directoryObject-id}", - "Permissions": [], - "Module": "DirectoryObjects", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryObject", + "ApiReferenceLink": null, + "Uri": "/directoryObjects/{directoryObject-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryObject", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "DirectoryObjects", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryObject" }, { - "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryOnPremiseSynchronization", + "ApiReferenceLink": null, + "Uri": "/directory/onPremisesSynchronization/{onPremisesDirectorySynchronization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnPremisesDirectorySynchronization" }, { - "Uri": "/directoryRoles/{directoryRole-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryRole", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryRoleByRoleTemplateId", + "ApiReferenceLink": null, + "Uri": "/directoryRoles(roleTemplateId='{roleTemplateId}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRole" }, { - "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryRoleScopedMember", + "ApiReferenceLink": null, + "Uri": "/directoryRoles/{directoryRole-id}/scopedMembers/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectoryRoleTemplate", + "ApiReferenceLink": null, + "Uri": "/directoryRoleTemplates/{directoryRoleTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryRoleTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryRoleTemplate" }, { - "Uri": "/directory/subscriptions/{companySubscription-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectorySubscription", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions/{companySubscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDirectorySubscriptionByCommerceSubscriptionId", + "ApiReferenceLink": null, + "Uri": "/directory/subscriptions(commerceSubscriptionId='{commerceSubscriptionId}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCompanySubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphCompanySubscription" }, { - "Uri": "/domains/{domain-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDomain", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-1.0", + "Uri": "/domains/{domain-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomain", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/domain-update?view=graph-rest-1.0" + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomain" }, { - "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDomainFederationConfiguration", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/federationConfiguration/{internalDomainFederation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInternalDomainFederation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphInternalDomainFederation" }, { - "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDomainServiceConfigurationRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/serviceConfigurationRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDomainVerificationDnsRecord", + "ApiReferenceLink": null, + "Uri": "/domains/{domain-id}/verificationDnsRecords/{domainDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDomainDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDomainDnsRecord" }, { - "Uri": "/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDrive", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDriveItem", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -517516,213 +541820,226 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Update-MgDriveItem", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgDriveItemPermission", + "ApiReferenceLink": null, "Uri": "/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Files", "Permissions": [ { "Name": "Files.ReadWrite", @@ -517749,677 +542066,719 @@ "IsLeastPrivilege": false } ], - "Module": "Files", - "Command": "Update-MgDriveItemPermission", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveList", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRoot", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/education/classes/{educationClass-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationClass", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationClass", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationClass" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignment", + "ApiReferenceLink": null, "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -518438,37 +542797,39 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignment", + "OutputType": "IMicrosoftGraphEducationAssignment" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentCategories/{educationCategory-id}", - "Permissions": [], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentCategory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentDefault", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationCategory", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentDefaults", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -518487,37 +542848,39 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentDefault", + "OutputType": "IMicrosoftGraphEducationAssignmentDefaults" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentDefaults", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentResource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/rubric", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -518536,21 +542899,22 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentRubric", + "OutputType": "IMicrosoftGraphEducationRubric" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentSetting", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -518569,53 +542933,56 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentSetting", + "OutputType": "IMicrosoftGraphEducationAssignmentSettings" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentSettingGradingCategory", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationGradingCategory" }, { - "Uri": "/education/classes/{educationClass-id}/assignmentSettings/gradingCategories/{educationGradingCategory-id}", - "Permissions": [], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentSettingGradingCategory", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationGradingCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentSubmission", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWrite", @@ -518634,211 +543001,258 @@ "IsLeastPrivilege": true } ], - "Module": "Education", - "Command": "Update-MgEducationClassAssignmentSubmissionOutcome", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationClassAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationClassModule", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModule" }, { - "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationClassModuleResource", + "ApiReferenceLink": null, + "Uri": "/education/classes/{educationClass-id}/modules/{educationModule-id}/resources/{educationModuleResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationModuleResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [ + { + "Name": "EduCurricula.ReadWrite", + "Description": "Read and write your class modules and resources", + "FullDescription": "Allows the app to read and write modules and resources on your behalf.", + "IsAdmin": true, + "PermissionType": "DelegatedWork", + "IsLeastPrivilege": true + }, + { + "Name": "EduCurricula.ReadWrite.All", + "Description": "Read and write all class modules and resources", + "FullDescription": "Allows the app to read and write all modules and resources, without a signed-in user.", + "IsAdmin": false, + "PermissionType": "Application", + "IsLeastPrivilege": true + } + ], + "OutputType": "IMicrosoftGraphEducationModuleResource" }, { - "Uri": "/education/me", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMe", + "ApiReferenceLink": null, + "Uri": "/education/me", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignment", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/me/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgEducationMeRubric", + "ApiReferenceLink": null, "Uri": "/education/me/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Education", "Permissions": [ { "Name": "EduAssignments.ReadWriteBasic", @@ -518857,324 +543271,334 @@ "IsLeastPrivilege": false } ], - "Module": "Education", - "Command": "Update-MgEducationMeRubric", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/me/user/mailboxSettings", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationMeUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/me/user/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationRoot", + "ApiReferenceLink": null, + "Uri": "/education", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRoot" }, { - "Uri": "/education/schools/{educationSchool-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationSchool", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSchool", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSchool" }, { - "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationSchoolAdministrativeUnit", + "ApiReferenceLink": null, + "Uri": "/education/schools/{educationSchool-id}/administrativeUnit", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdministrativeUnit", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdministrativeUnit" }, { - "Uri": "/education/users/{educationUser-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUser", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationUser" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignment", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignment" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/resources/{educationAssignmentResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationAssignmentResource", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", - "Permissions": [], "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationAssignmentResource" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/rubric", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmission", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmission" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionOutcome", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/outcomes/{educationOutcome-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationOutcome", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationOutcome" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/resources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserAssignmentSubmissionSubmittedResource", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/assignments/{educationAssignment-id}/submissions/{educationSubmission-id}/submittedResources/{educationSubmissionResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationSubmissionResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationSubmissionResource" }, { - "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/user/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", - "Permissions": [], - "Module": "Education", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEducationUserRubric", + "ApiReferenceLink": null, + "Uri": "/education/users/{educationUser-id}/rubrics/{educationRubric-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEducationRubric", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Education", + "Permissions": [], + "OutputType": "IMicrosoftGraphEducationRubric" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackageAssignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageAssignmentPolicy", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/assignmentPolicies/{accessPackageAssignmentPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageAssignmentPolicy" }, { - "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAccessPackageResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/accessPackages/{accessPackage-id}/resourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/reprocess", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgEntitlementManagementAssignment", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-reprocess?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignments/{accessPackageAssignment-id}/reprocess", + "ApiVersion": "v1.0", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -519183,48 +543607,51 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignment-reprocess?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAssignmentPolicyCustomExtensionStageSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/customExtensionStageSettings/{customExtensionStageSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomExtensionStageSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomExtensionStageSetting" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementAssignmentPolicyQuestion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/assignmentPolicies/{accessPackageAssignmentPolicy-id}/questions/{accessPackageQuestion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageQuestion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageQuestion" }, { - "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgEntitlementManagementAssignmentRequest", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-reprocess?view=graph-rest-1.0", + "Uri": "/identityGovernance/entitlementManagement/assignmentRequests/{accessPackageAssignmentRequest-id}/reprocess", + "ApiVersion": "v1.0", "Variants": [ "Reprocess", "ReprocessViaIdentity", @@ -519233,64 +543660,68 @@ "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/accesspackageassignmentrequest-reprocess?view=graph-rest-1.0" + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519305,16 +543736,17 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519325,16 +543757,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519345,16 +543778,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519365,32 +543799,34 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519405,16 +543841,17 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519425,16 +543862,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519445,16 +543883,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519465,288 +543904,306 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/catalogs/{accessPackageCatalog-id}/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementConnectedOrganization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/connectedOrganizations/{connectedOrganization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConnectedOrganization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphConnectedOrganization" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironment", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceEnvironment" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceEnvironmentResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceEnvironments/{accessPackageResourceEnvironment-id}/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRequest" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalog", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageCatalog", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageCatalog" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogCustomWorkflowExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/customWorkflowExtensions/{customCalloutExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomCalloutExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomCalloutExtension" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519761,16 +544218,17 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519781,16 +544239,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519801,16 +544260,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519821,32 +544281,34 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceRoles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519861,16 +544323,17 @@ "UpdateViaIdentityExpanded1", "UpdateViaIdentityExpanded2" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519881,16 +544344,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519901,16 +544365,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -519921,521 +544386,564 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestCatalogResourceScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/catalog/resourceScopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRequestResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRequests/{accessPackageResourceRequest-id}/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRoleScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/roles/{accessPackageResourceRole-id}/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/scope/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceRoleScopeRoleResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resourceRoleScopes/{accessPackageResourceRoleScope-id}/role/resource/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScope", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceScope" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResourceRole", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResourceRole", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResourceRole" }, { - "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementResourceScopeResourceRoleResource", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/resources/{accessPackageResource-id}/scopes/{accessPackageResourceScope-id}/resource/roles/{accessPackageResourceRole-id}/resource", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessPackageResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessPackageResource" }, { - "Uri": "/identityGovernance/entitlementManagement/settings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgEntitlementManagementSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/entitlementManagement/settings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEntitlementManagementSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphEntitlementManagementSettings" }, { - "Uri": "/external", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgExternal", + "ApiReferenceLink": null, + "Uri": "/external", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgExternalConnection", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -520454,21 +544962,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgExternalConnection", + "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgExternalConnectionGroup", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalConnection", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}", + "Module": "Search", "Permissions": [ { "Name": "ExternalItem.ReadWrite.OwnedBy", @@ -520487,69 +544996,73 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgExternalConnectionGroup", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphExternalConnectorsExternalGroup" }, { - "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgExternalConnectionGroupMember", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/groups/{externalGroup-id}/members/{identity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsIdentity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsIdentity" }, { - "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgExternalConnectionItemActivity", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/items/{externalItem-id}/activities/{externalActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsExternalActivity" }, { - "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgExternalConnectionOperation", + "ApiReferenceLink": null, + "Uri": "/external/connections/{externalConnection-id}/operations/{connectionOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphExternalConnectorsConnectionOperation" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgExternalConnectionSchema", + "ApiReferenceLink": null, "Uri": "/external/connections/{externalConnection-id}/schema", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Search", "Permissions": [ { "Name": "ExternalConnection.ReadWrite.OwnedBy", @@ -520568,21 +545081,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgExternalConnectionSchema", + "OutputType": "IMicrosoftGraphExternalConnectorsSchema" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroup", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0", + "Uri": "/groups/{group-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphExternalConnectorsSchema", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}", + "Module": "Groups", "Permissions": [ { "Name": "Group.ReadWrite.All", @@ -520601,53 +545115,56 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Update-MgGroup", + "OutputType": "IMicrosoftGraphGroup" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/groups/{group-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", - "Command": "Update-MgGroupAppRoleAssignment", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupByUniqueName", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0", + "Uri": "/groups(uniqueName='{uniqueName}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroup" }, { - "Uri": "/groups(uniqueName='{uniqueName}')", - "Permissions": [], - "Module": "Groups", - "Command": "Update-MgGroupByUniqueName", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupCalendarEvent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroup", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/group-upsert?view=graph-rest-1.0" - }, - { - "Uri": "/groups/{group-id}/calendar/events/{event-id}", + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -520666,37 +545183,39 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Update-MgGroupCalendarEvent", + "OutputType": "IMicrosoftGraphEvent" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/groups/{group-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", - "Command": "Update-MgGroupCalendarPermission", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupConversationThread", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}", + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -520715,949 +545234,1008 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Update-MgGroupConversationThread", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupConversationThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupConversationThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/conversations/{conversation-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDrive", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRoot", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupEvent", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/events/{event-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Calendar", "Permissions": [ { "Name": "Calendars.ReadWrite", @@ -521676,72 +546254,66 @@ "IsLeastPrivilege": false } ], - "Module": "Calendar", - "Command": "Update-MgGroupEvent", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupEventExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupLifecyclePolicy", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-1.0", + "Uri": "/groupLifecyclePolicies/{groupLifecyclePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -521752,141 +546324,164 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupLifecyclePolicy", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/grouplifecyclepolicy-update?view=graph-rest-1.0" + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupLifecyclePolicy" }, { - "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgGroupOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/planner", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupPlanner", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerGroup" }, { - "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlannerPlanDetails" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupSetting", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/settings/{groupSetting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "Update1", + "UpdateExpanded", + "UpdateExpanded1", + "UpdateViaIdentity", + "UpdateViaIdentity1", + "UpdateViaIdentityExpanded", + "UpdateViaIdentityExpanded1" + ], + "Module": "Groups", "Permissions": [ { "Name": "Directory.ReadWrite.All", @@ -521905,188 +546500,185 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Update-MgGroupSetting", - "Variants": [ - "Update", - "Update1", - "UpdateExpanded", - "UpdateExpanded1", - "UpdateViaIdentity", - "UpdateViaIdentity1", - "UpdateViaIdentityExpanded", - "UpdateViaIdentityExpanded1" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphGroupSetting" }, { - "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSettingTemplateGroupSettingTemplate", + "ApiReferenceLink": null, + "Uri": "/groupSettingTemplates/{groupSettingTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGroupSettingTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": "IMicrosoftGraphGroupSettingTemplate" }, { - "Uri": "/groups/{group-id}/sites/{site-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSite", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522097,16 +546689,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522117,16 +546710,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522137,768 +546731,816 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteList", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItem", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenote", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteNotebookSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/operations/{onenoteOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteResource", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/resources/{onenoteResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteResource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteResource" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroupSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionGroupSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOnenoteSectionPage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSitePermission", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522909,16 +547551,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522929,16 +547572,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522949,16 +547593,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -522977,16 +547622,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523005,16 +547651,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523025,16 +547672,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523045,16 +547693,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523065,16 +547714,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523085,16 +547735,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523105,16 +547756,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/groups/{group-id1}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523125,16 +547777,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523145,16 +547798,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523173,16 +547827,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523201,16 +547856,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523221,16 +547877,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523241,16 +547898,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523269,16 +547927,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523297,16 +547956,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523317,16 +547977,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523337,16 +547998,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523357,16 +548019,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523377,16 +548040,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523397,16 +548061,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523417,16 +548082,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523437,16 +548103,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523457,16 +548124,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523477,16 +548145,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -523497,509 +548166,551 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamOperation", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/groups/{group-id}/team/photo", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/photo", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/groups/{group-id}/team/primaryChannel", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamTag", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/team/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgGroupThread", + "ApiReferenceLink": null, "Uri": "/groups/{group-id}/threads/{conversationThread-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Groups", "Permissions": [ { "Name": "Group-Conversation.ReadWrite.All", @@ -524018,213 +548729,226 @@ "IsLeastPrivilege": false } ], - "Module": "Groups", - "Command": "Update-MgGroupThread", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationThread", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationThread" }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupThreadPostExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", - "Permissions": [], - "Module": "Groups", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgGroupThreadPostInReplyToExtension", + "ApiReferenceLink": null, + "Uri": "/groups/{group-id}/threads/{conversationThread-id}/posts/{post-id}/inReplyTo/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Groups", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/apiConnectors/{identityApiConnector-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityApiConnector", + "ApiReferenceLink": null, + "Uri": "/identity/apiConnectors/{identityApiConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityAuthenticationEventListener", + "ApiReferenceLink": null, + "Uri": "/identity/authenticationEventListeners/{authenticationEventListener-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationEventListener", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationEventListener" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlow", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphB2XIdentityUserFlow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphB2XIdentityUserFlow" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserFlowLanguageConfiguration" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguageDefaultPage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/defaultPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowLanguageOverridePage", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/languages/{userFlowLanguageConfiguration-id}/overridesPages/{userFlowLanguagePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowPostAttributeCollection", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postAttributeCollection", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", - "Permissions": [], "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" + }, + { + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowPostFederationSignup", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/apiConnectorConfiguration/postFederationSignup", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityApiConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityApiConnector" }, { - "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityB2XUserFlowUserAttributeAssignment", + "ApiReferenceLink": null, + "Uri": "/identity/b2xUserFlows/{b2xIdentityUserFlow-id}/userAttributeAssignments/{identityUserFlowAttributeAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttributeAssignment" }, { - "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityConditionalAccessAuthenticationContextClassReference", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/authenticationContextClassReferences/{authenticationContextClassReference-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationContextClassReference", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationContextClassReference" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgIdentityConditionalAccessNamedLocation", + "ApiReferenceLink": null, "Uri": "/identity/conditionalAccess/namedLocations/{namedLocation-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -524243,21 +548967,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgIdentityConditionalAccessNamedLocation", + "OutputType": "IMicrosoftGraphNamedLocation" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgIdentityConditionalAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNamedLocation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/identity/conditionalAccess/policies/{conditionalAccessPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -524284,722 +549009,757 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgIdentityConditionalAccessPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConditionalAccessPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConditionalAccessPolicy" }, { - "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityCustomAuthenticationExtension", + "ApiReferenceLink": null, + "Uri": "/identity/customAuthenticationExtensions/{customAuthenticationExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCustomAuthenticationExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCustomAuthenticationExtension" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstance" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceContactedReviewer", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/contactedReviewers/{accessReviewReviewer-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewReviewer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewReviewer" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewStage" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecision", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewInstanceDecisionItem" }, { - "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewDefinitionInstanceStageDecisionInsight", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/definitions/{accessReviewScheduleDefinition-id}/instances/{accessReviewInstance-id}/stages/{accessReviewStage-id}/decisions/{accessReviewInstanceDecisionItem-id}/insights/{governanceInsight-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphGovernanceInsight", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphGovernanceInsight" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewHistoryDefinition", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryDefinition" }, { - "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAccessReviewHistoryDefinitionInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/accessReviews/historyDefinitions/{accessReviewHistoryDefinition-id}/instances/{accessReviewHistoryInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAccessReviewHistoryInstance" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppConsentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserConsentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserConsentRequest" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceAppConsentRequestUserConsentRequestApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/appConsent/appConsentRequests/{appConsentRequest-id}/userConsentRequests/{userConsentRequest-id}/approval/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflow", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceWorkflow" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtension", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceCustomTaskExtension" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowCustomTaskExtensionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/customTaskExtensions/{customTaskExtension-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowDeletedItemWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/deletedItems/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowRunTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowRunUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/runs/{run-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/settings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/settings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceLifecycleManagementSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTaskReportTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/taskReports/{taskReport-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowTemplateTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflowTemplates/{workflowTemplate-id}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowUserProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/userProcessingResults/{userProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionCreatedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/createdBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionLastModifiedByMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/lastModifiedBy/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionTask", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityGovernanceTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityGovernanceTask" }, { - "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceLifecycleWorkflowVersionTaskProcessingResultSubjectMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/lifecycleWorkflows/workflows/{workflow-id}/versions/{workflowVersion-versionNumber}/tasks/{task-id}/taskProcessingResults/{taskProcessingResult-id}/subject/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/identityGovernance/privilegedAccess", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccess", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessRoot" }, { - "Uri": "/identityGovernance/privilegedAccess/group", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroup", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroup" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApproval", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApproval", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApproval" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentApprovalStage", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentApprovals/{approval-id}/stages/{approvalStage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphApprovalStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphApprovalStage" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentSchedules/{privilegedAccessGroupAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentSchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleInstances/{privilegedAccessGroupAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/assignmentScheduleRequests/{privilegedAccessGroupAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupAssignmentScheduleRequest" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilitySchedules/{privilegedAccessGroupEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilitySchedule" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleInstances/{privilegedAccessGroupEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleInstance" }, { - "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernancePrivilegedAccessGroupEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/privilegedAccess/group/eligibilityScheduleRequests/{privilegedAccessGroupEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrivilegedAccessGroupEligibilityScheduleRequest" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreement", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreement", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreement" }, { - "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementAcceptance", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreementAcceptances/{agreementAcceptance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -525010,187 +549770,209 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementAcceptance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementAcceptance" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFile", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFile" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalization", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileLocalization" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileLocalizationVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/file/localizations/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityGovernanceTermsOfUseAgreementFileVersion", + "ApiReferenceLink": null, + "Uri": "/identityGovernance/termsOfUse/agreements/{agreement-id}/files/{agreementFileLocalization-id}/versions/{agreementFileVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAgreementFileVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAgreementFileVersion" }, { - "Uri": "/identity/identityProviders/{identityProviderBase-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityProvider", + "ApiReferenceLink": null, + "Uri": "/identity/identityProviders/{identityProviderBase-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityProviderBase", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityProviderBase" }, { - "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgIdentityUserFlowAttribute", + "ApiReferenceLink": null, + "Uri": "/identity/userFlowAttributes/{identityUserFlowAttribute-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphIdentityUserFlowAttribute" }, { - "Uri": "/informationProtection", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgInformationProtection", + "ApiReferenceLink": null, + "Uri": "/informationProtection", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInformationProtection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInformationProtection" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgInformationProtectionThreatAssessmentRequest", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentRequest" }, { - "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgInformationProtectionThreatAssessmentRequestResult", + "ApiReferenceLink": null, + "Uri": "/informationProtection/threatAssessmentRequests/{threatAssessmentRequest-id}/results/{threatAssessmentResult-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThreatAssessmentResult", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphThreatAssessmentResult" }, { - "Uri": "/invitations/{invitation-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgInvitation", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInvitation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphInvitation" }, { - "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgInvitationInvitedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/invitations/{invitation-id}/invitedUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgOauth2PermissionGrant", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-1.0", "Uri": "/oauth2PermissionGrants/{oAuth2PermissionGrant-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "DelegatedPermissionGrant.ReadWrite.All", @@ -525209,21 +549991,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgOauth2PermissionGrant", + "OutputType": "IMicrosoftGraphOAuth2PermissionGrant" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgOrganization", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-update?view=graph-rest-1.0", + "Uri": "/organization/{organization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOAuth2PermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/oauth2permissiongrant-update?view=graph-rest-1.0" - }, - { - "Uri": "/organization/{organization-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "DeviceManagementServiceConfig.ReadWrite.All", @@ -525250,21 +550033,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgOrganization", + "OutputType": "IMicrosoftGraphOrganization" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgOrganizationBranding", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganization", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-onboarding-organization-update?view=graph-rest-1.0" - }, - { - "Uri": "/organization/{organization-id}/branding", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -525283,21 +550067,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgOrganizationBranding", + "OutputType": "IMicrosoftGraphOrganizationalBranding" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgOrganizationBrandingLocalization", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBranding", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/organization/{organization-id}/branding/localizations/{organizationalBrandingLocalization-id}", + "Module": "Identity.DirectoryManagement", "Permissions": [ { "Name": "OrganizationalBranding.ReadWrite.All", @@ -525316,83 +550101,88 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgOrganizationBrandingLocalization", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOrganizationalBrandingLocalization" }, { - "Uri": "/organization/{organization-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgOrganizationExtension", + "ApiReferenceLink": null, + "Uri": "/organization/{organization-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": null }, { - "Uri": "/places/{place-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPlace", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0", + "Uri": "/places/{place-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlace", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/place-update?view=graph-rest-1.0" + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlace" }, { - "Uri": "/places/{place-id}/roomList/rooms/{room-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPlaceAsRoomListRoom", + "ApiReferenceLink": null, + "Uri": "/places/{place-id}/roomList/rooms/{room-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoom", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphRoom" }, { - "Uri": "/planner", - "Permissions": [], - "Module": "Planner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPlanner", + "ApiReferenceLink": null, + "Uri": "/planner", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlanner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Planner", + "Permissions": [], + "OutputType": "IMicrosoftGraphPlanner" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerBucket", + "ApiReferenceLink": null, "Uri": "/planner/buckets/{plannerBucket-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525419,21 +550209,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerBucket", + "OutputType": "IMicrosoftGraphPlannerBucket" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerPlan", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucket", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525460,21 +550251,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerPlan", + "OutputType": "IMicrosoftGraphPlannerPlan" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerPlanDetail", + "ApiReferenceLink": null, + "Uri": "/planner/plans/{plannerPlan-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlan", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/plans/{plannerPlan-id}/details", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525501,21 +550293,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerPlanDetail", + "OutputType": "IMicrosoftGraphPlannerPlanDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerTask", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerPlanDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525542,21 +550335,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTask", + "OutputType": "IMicrosoftGraphPlannerTask" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTask", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/assignedToTaskBoardFormat", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525583,21 +550377,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskAssignedToTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerAssignedToTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/bucketTaskBoardFormat", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525624,21 +550419,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskBucketTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerTaskDetail", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/details", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerBucketTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/details", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525665,21 +550461,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskDetail", + "OutputType": "IMicrosoftGraphPlannerTaskDetails" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", + "ApiReferenceLink": null, + "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerTaskDetails", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/planner/tasks/{plannerTask-id}/progressTaskBoardFormat", + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite.All", @@ -525706,21 +550503,22 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgPlannerTaskProgressTaskBoardFormat", + "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerProgressTaskBoardTaskFormat", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/activityBasedTimeoutPolicies/{activityBasedTimeoutPolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -525739,35 +550537,37 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyActivityBasedTimeoutPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphActivityBasedTimeoutPolicy" }, { - "Uri": "/policies/adminConsentRequestPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAdminConsentRequestPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/adminConsentRequestPolicy", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAdminConsentRequestPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/appManagementPolicies/{appManagementPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -525786,65 +550586,69 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyAppManagementPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphAppManagementPolicy" }, { - "Uri": "/policies/authenticationFlowsPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationFlowPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationFlowsPolicy", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationFlowsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationMethodPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodsPolicy" }, { - "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationMethodPolicyAuthenticationMethodConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationMethodsPolicy/authenticationMethodConfigurations/{authenticationMethodConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationMethodConfiguration" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyAuthenticationStrengthPolicy", + "ApiReferenceLink": null, "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -525863,21 +550667,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyAuthenticationStrengthPolicy", + "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy" + }, + { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-1.0", + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationStrengthPolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/updateAllowedCombinations", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.ReadWrite.ConditionalAccess", @@ -525896,51 +550701,54 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyAuthenticationStrengthPolicyAllowedCombination", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult", - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/authenticationstrengthpolicy-updateallowedcombinations?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUpdateAllowedCombinationsResult" }, { - "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAuthenticationStrengthPolicyCombinationConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/authenticationStrengthPolicies/{authenticationStrengthPolicy-id}/combinationConfigurations/{authenticationCombinationConfiguration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthenticationCombinationConfiguration" }, { - "Uri": "/policies/authorizationPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyAuthorizationPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/authorizationPolicy", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthorizationPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthorizationPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyClaimMappingPolicy", + "ApiReferenceLink": null, "Uri": "/policies/claimsMappingPolicies/{claimsMappingPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -525959,107 +550767,112 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyClaimMappingPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphClaimsMappingPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphClaimsMappingPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicy" }, { - "Uri": "/policies/crossTenantAccessPolicy/default", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyDefault", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/default", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationDefault" }, { - "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyPartner", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/partners/{crossTenantAccessPolicyConfigurationPartner-tenantId}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphCrossTenantAccessPolicyConfigurationPartner" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplate", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPolicyTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationIdentitySynchronization", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationIdentitySyncPolicyTemplate" }, { - "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyCrossTenantAccessPolicyTemplateMultiTenantOrganizationPartnerConfiguration", + "ApiReferenceLink": null, + "Uri": "/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationPartnerConfigurationTemplate" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyDefaultAppManagementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/defaultAppManagementPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -526078,35 +550891,39 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyDefaultAppManagementPolicy", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTenantAppManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTenantAppManagementPolicy" }, { - "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyFeatureRolloutPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/featureRolloutPolicies/{featureRolloutPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphFeatureRolloutPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphFeatureRolloutPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", + "ApiReferenceLink": null, "Uri": "/policies/homeRealmDiscoveryPolicies/{homeRealmDiscoveryPolicy-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -526125,21 +550942,20 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyHomeRealmDiscoveryPolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphHomeRealmDiscoveryPolicy" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", + "ApiReferenceLink": null, "Uri": "/policies/identitySecurityDefaultsEnforcementPolicy", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.All", @@ -526158,115 +550974,124 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyIdentitySecurityDefaultEnforcementPolicy", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphIdentitySecurityDefaultsEnforcementPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantPolicy" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicyExclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/excludes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyPermissionGrantPolicyInclude", + "ApiReferenceLink": null, + "Uri": "/policies/permissionGrantPolicies/{permissionGrantPolicy-id}/includes/{permissionGrantConditionSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermissionGrantConditionSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermissionGrantConditionSet" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicy", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicy" }, { - "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicyAssignment", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicyAssignments/{unifiedRoleManagementPolicyAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyAssignment" }, { - "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPolicyRoleManagementPolicyEffectiveRule", + "ApiReferenceLink": null, + "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/effectiveRules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyRoleManagementPolicyRule", + "ApiReferenceLink": null, "Uri": "/policies/roleManagementPolicies/{unifiedRoleManagementPolicy-id}/rules/{unifiedRoleManagementPolicyRule-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "RoleManagementPolicy.ReadWrite.Directory", @@ -526285,21 +551110,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyRoleManagementPolicyRule", + "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyTokenIssuancePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleManagementPolicyRule", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenIssuancePolicies/{tokenIssuancePolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -526318,21 +551144,22 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyTokenIssuancePolicy", + "OutputType": "IMicrosoftGraphTokenIssuancePolicy" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPolicyTokenLifetimePolicy", + "ApiReferenceLink": null, + "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenIssuancePolicy", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/policies/tokenLifetimePolicies/{tokenLifetimePolicy-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "Policy.Read.ApplicationConfiguration", @@ -526351,67 +551178,71 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgPolicyTokenLifetimePolicy", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTokenLifetimePolicy", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTokenLifetimePolicy" }, { - "Uri": "/print", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrint", + "ApiReferenceLink": null, + "Uri": "/print", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrint" }, { - "Uri": "/print/connectors/{printConnector-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintConnector", + "ApiReferenceLink": null, + "Uri": "/print/connectors/{printConnector-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintConnector", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintConnector" }, { - "Uri": "/print/operations/{printOperation-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintOperation", + "ApiReferenceLink": null, + "Uri": "/print/operations/{printOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintOperation" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPrintPrinter", + "ApiReferenceLink": null, "Uri": "/print/printers/{printer-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "Printer.ReadWrite.All", @@ -526430,21 +551261,22 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Update-MgPrintPrinter", + "OutputType": "IMicrosoftGraphPrinter" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgPrintPrinterJob", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinter", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}", + "Module": "Devices.CloudPrint", "Permissions": [ { "Name": "PrintJob.ReadWriteBasic.All", @@ -526471,489 +551303,518 @@ "IsLeastPrivilege": false } ], - "Module": "Devices.CloudPrint", - "Command": "Update-MgPrintPrinterJob", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintPrinterJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintPrinterJobTask", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintPrinterTaskTrigger", + "ApiReferenceLink": null, + "Uri": "/print/printers/{printer-id}/taskTriggers/{printTaskTrigger-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskTrigger", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskTrigger" }, { - "Uri": "/print/services/{printService-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintService", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintService", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintService" }, { - "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintServiceEndpoint", + "ApiReferenceLink": null, + "Uri": "/print/services/{printService-id}/endpoints/{printServiceEndpoint-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintServiceEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintServiceEndpoint" }, { - "Uri": "/print/shares/{printerShare-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintShare", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrinterShare", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrinterShare" }, { - "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintShareAllowedUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/allowedUsers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintShareJob", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintJob" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintShareJobDocument", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/documents/{printDocument-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintDocument", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintDocument" }, { - "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintShareJobTask", + "ApiReferenceLink": null, + "Uri": "/print/shares/{printerShare-id}/jobs/{printJob-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintTaskDefinition", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTaskDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTaskDefinition" }, { - "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", - "Permissions": [], - "Module": "Devices.CloudPrint", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrintTaskDefinitionTask", + "ApiReferenceLink": null, + "Uri": "/print/taskDefinitions/{printTaskDefinition-id}/tasks/{printTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPrintTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CloudPrint", + "Permissions": [], + "OutputType": "IMicrosoftGraphPrintTask" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Compliance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgPrivacySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/privacy/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Compliance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportAuthenticationMethodUserRegistrationDetail", + "ApiReferenceLink": null, + "Uri": "/reports/authenticationMethods/userRegistrationDetails/{userRegistrationDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserRegistrationDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserRegistrationDetails" }, { - "Uri": "/reports/partners/billing", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBilling", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBilling", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBilling" }, { - "Uri": "/reports/partners/billing/manifests/{manifest-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingManifest", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/manifests/{manifest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingManifest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingManifest" }, { - "Uri": "/reports/partners/billing/operations/{operation-id}", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingOperation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/operations/{operation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingOperation" }, { - "Uri": "/reports/partners/billing/reconciliation", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingReconciliation", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingReconciliation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingReconciliation" }, { - "Uri": "/reports/partners/billing/reconciliation/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingReconciliationBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/reconciliation/billed", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsage", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": "IMicrosoftGraphPartnersBillingAzureUsage" }, { - "Uri": "/reports/partners/billing/usage/billed", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsageBilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/billed", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/reports/partners/billing/usage/unbilled", - "Permissions": [], - "Module": "Reports", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgReportPartnerBillingUsageUnbilled", + "ApiReferenceLink": null, + "Uri": "/reports/partners/billing/usage/unbilled", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Reports", + "Permissions": [], + "OutputType": null }, { - "Uri": "/identityProtection/riskDetections/{riskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskDetections/{riskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskDetection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskDetection" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRiskyServicePrincipal", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipal" }, { - "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRiskyServicePrincipalHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyServicePrincipals/{riskyServicePrincipal-id}/history/{riskyServicePrincipalHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyServicePrincipalHistoryItem" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRiskyUser", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUser" }, { - "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRiskyUserHistory", + "ApiReferenceLink": null, + "Uri": "/identityProtection/riskyUsers/{riskyUser-id}/history/{riskyUserHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRiskyUserHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphRiskyUserHistoryItem" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgRoleManagement", + "ApiReferenceLink": null, "Uri": "/roleManagement", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded" + ], + "Module": "DeviceManagement.Enrollment", "Permissions": [ { "Name": "DeviceManagementConfiguration.ReadWrite.All", @@ -526972,145 +551833,156 @@ "IsLeastPrivilege": false } ], - "Module": "DeviceManagement.Enrollment", - "Command": "Update-MgRoleManagement", - "Variants": [ - "Update", - "UpdateExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRoleManagement", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphRoleManagement" }, { - "Uri": "/roleManagement/directory", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectory", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgRoleManagementDirectoryRoleDefinition", + "ApiReferenceLink": null, "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.Governance", "Permissions": [ { "Name": "RoleManagement.ReadWrite.Directory", @@ -527129,291 +552001,309 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.Governance", - "Command": "Update-MgRoleManagementDirectoryRoleDefinition", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementDirectoryRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/directory/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagement", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRbacApplication", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphRbacApplication" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespace", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceNamespace" }, { - "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementResourceNamespaceResourceAction", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/resourceNamespaces/{unifiedRbacResourceNamespace-id}/resourceActions/{unifiedRbacResourceAction-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRbacResourceAction" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignment" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentAppScope", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignments/{unifiedRoleAssignment-id}/appScope", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppScope", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppScope" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentSchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentSchedules/{unifiedRoleAssignmentSchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentSchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleInstances/{unifiedRoleAssignmentScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleAssignmentScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleAssignmentScheduleRequests/{unifiedRoleAssignmentScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleAssignmentScheduleRequest" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinition", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleDefinitionInheritPermissionFrom", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleDefinitions/{unifiedRoleDefinition-id}/inheritsPermissionsFrom/{unifiedRoleDefinition-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleDefinition" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilitySchedule", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilitySchedules/{unifiedRoleEligibilitySchedule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilitySchedule" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleInstance", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleInstances/{unifiedRoleEligibilityScheduleInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleInstance" }, { - "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", - "Permissions": [], - "Module": "Identity.Governance", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgRoleManagementEntitlementManagementRoleEligibilityScheduleRequest", + "ApiReferenceLink": null, + "Uri": "/roleManagement/entitlementManagement/roleEligibilityScheduleRequests/{unifiedRoleEligibilityScheduleRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Governance", + "Permissions": [], + "OutputType": "IMicrosoftGraphUnifiedRoleEligibilityScheduleRequest" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSchemaExtension", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-1.0", "Uri": "/schemaExtensions/{schemaExtension-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "SchemaExtensions", "Permissions": [ { "Name": "Application.ReadWrite.All", @@ -527432,21 +552322,22 @@ "IsLeastPrivilege": false } ], - "Module": "SchemaExtensions", - "Command": "Update-MgSchemaExtension", + "OutputType": "IMicrosoftGraphSchemaExtension" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSearchAcronym", + "ApiReferenceLink": null, + "Uri": "/search/acronyms/{acronym-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchemaExtension", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/schemaextension-update?view=graph-rest-1.0" - }, - { - "Uri": "/search/acronyms/{acronym-id}", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -527465,21 +552356,22 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgSearchAcronym", + "OutputType": "IMicrosoftGraphSearchAcronym" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSearchBookmark", + "ApiReferenceLink": null, + "Uri": "/search/bookmarks/{bookmark-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchAcronym", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/search/bookmarks/{bookmark-id}", + "Module": "Search", "Permissions": [ { "Name": "SearchConfiguration.Read.All", @@ -527498,273 +552390,290 @@ "IsLeastPrivilege": false } ], - "Module": "Search", - "Command": "Update-MgSearchBookmark", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchBookmark", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSearchBookmark" }, { - "Uri": "/search", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSearchEntity", + "ApiReferenceLink": null, + "Uri": "/search", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchEntity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchEntity" }, { - "Uri": "/search/qnas/{qna-id}", - "Permissions": [], - "Module": "Search", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSearchQna", + "ApiReferenceLink": null, + "Uri": "/search/qnas/{qna-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSearchQna", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Search", + "Permissions": [], + "OutputType": "IMicrosoftGraphSearchQna" }, { - "Uri": "/security/alerts/{alert-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAlert", + "ApiReferenceLink": null, + "Uri": "/security/alerts/{alert-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAlert", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAlert" }, { - "Uri": "/security/alerts_v2/{alert-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAlertV2", + "ApiReferenceLink": null, + "Uri": "/security/alerts_v2/{alert-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAlert", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAlert" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationAutomation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomation" }, { - "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationAutomationRun", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/simulationAutomations/{simulationAutomation-id}/runs/{simulationAutomationRun-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSimulationAutomationRun", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSimulationAutomationRun" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationEndUserNotification", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotification" }, { - "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationEndUserNotificationDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/endUserNotifications/{endUserNotification-id}/details/{endUserNotificationDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndUserNotificationDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndUserNotificationDetail" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLandingPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPage" }, { - "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLandingPageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/landingPages/{landingPage-id}/details/{landingPageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLandingPageDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLandingPageDetail" }, { - "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationLoginPage", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/loginPages/{loginPage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLoginPage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphLoginPage" }, { - "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationOperation", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/operations/{attackSimulationOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttackSimulationOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttackSimulationOperation" }, { - "Uri": "/security/attackSimulation/payloads/{payload-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationPayload", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/payloads/{payload-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPayload", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphPayload" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationTraining", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTraining", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTraining" }, { - "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityAttackSimulationTrainingLanguageDetail", + "ApiReferenceLink": null, + "Uri": "/security/attackSimulation/trainings/{training-id}/languageDetails/{trainingLanguageDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTrainingLanguageDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphTrainingLanguageDetail" }, { - "Uri": "/security/cases", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCase", + "ApiReferenceLink": null, + "Uri": "/security/cases", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCasesRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCasesRoot" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCase", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -527783,37 +552692,37 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCase", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCase" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodian", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCustodian" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianIndex", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/updateIndex", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -527832,83 +552741,88 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianIndex", - "Variants": [ - "Update", - "UpdateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverycustodian-updateindex?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianSiteSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/siteSources/{siteSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySiteSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySiteSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianUnifiedGroupSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/unifiedGroupSources/{unifiedGroupSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUnifiedGroupSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseCustodianUserSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/custodians/{ediscoveryCustodian-id}/userSources/{userSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityUserSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityUserSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryNoncustodialDataSource" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-1.0", "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/noncustodialDataSources/{ediscoveryNoncustodialDataSource-id}/updateIndex", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateViaIdentity" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -527927,51 +552841,56 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseNoncustodialDataSourceIndex", - "Variants": [ - "Update", - "UpdateViaIdentity" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/security-ediscoverynoncustodialdatasource-updateindex?view=graph-rest-1.0" + "OutputType": null }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseOperation", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/operations/{caseOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCaseOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCaseOperation" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSet", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSet" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "ApiReferenceLink": null, "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/reviewSets/{ediscoveryReviewSet-id}/queries/{ediscoveryReviewSetQuery-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -527990,21 +552909,22 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseReviewSetQuery", + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCaseSearch", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewSetQuery", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -528023,53 +552943,56 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseSearch", + "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoverySearch", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDataSource" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/searches/{ediscoverySearch-id}/additionalSources/{dataSource-id}", - "Permissions": [], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseSearchAdditionalSource", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCaseSetting", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDataSource", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings" }, { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/settings", - "Permissions": [], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseSetting", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSecurityCaseEdiscoveryCaseTag", + "ApiReferenceLink": null, + "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryCaseSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/security/cases/ediscoveryCases/{ediscoveryCase-id}/tags/{ediscoveryReviewTag-id}", + "Module": "Security", "Permissions": [ { "Name": "eDiscovery.Read.All", @@ -528088,749 +553011,796 @@ "IsLeastPrivilege": false } ], - "Module": "Security", - "Command": "Update-MgSecurityCaseEdiscoveryCaseTag", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphSecurityEdiscoveryReviewTag" }, { - "Uri": "/security/incidents/{incident-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityIncident", + "ApiReferenceLink": null, + "Uri": "/security/incidents/{incident-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIncident", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIncident" }, { - "Uri": "/security/labels", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityLabelsRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityLabelsRoot" }, { - "Uri": "/security/labels/authorities/{authorityTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelAuthority", + "ApiReferenceLink": null, + "Uri": "/security/labels/authorities/{authorityTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityAuthorityTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelCategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCategoryTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCategoryTemplate" }, { - "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelCategorySubcategory", + "ApiReferenceLink": null, + "Uri": "/security/labels/categories/{categoryTemplate-id}/subcategories/{subcategoryTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubcategoryTemplate" }, { - "Uri": "/security/labels/citations/{citationTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelCitation", + "ApiReferenceLink": null, + "Uri": "/security/labels/citations/{citationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityCitationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityCitationTemplate" }, { - "Uri": "/security/labels/departments/{departmentTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelDepartment", + "ApiReferenceLink": null, + "Uri": "/security/labels/departments/{departmentTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDepartmentTemplate" }, { - "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelFilePlanReference", + "ApiReferenceLink": null, + "Uri": "/security/labels/filePlanReferences/{filePlanReferenceTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanReferenceTemplate" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionLabel" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabelDescriptor", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/descriptors", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityFilePlanDescriptor" }, { - "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityLabelRetentionLabelDispositionReviewStage", + "ApiReferenceLink": null, + "Uri": "/security/labels/retentionLabels/{retentionLabel-id}/dispositionReviewStages/{dispositionReviewStage-stageNumber}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityDispositionReviewStage" }, { - "Uri": "/security/secureScores/{secureScore-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySecureScore", + "ApiReferenceLink": null, + "Uri": "/security/secureScores/{secureScore-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScore" }, { - "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySecureScoreControlProfile", + "ApiReferenceLink": null, + "Uri": "/security/secureScoreControlProfiles/{secureScoreControlProfile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecureScoreControlProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecureScoreControlProfile" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequest", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubjectRightsRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubjectRightsRequest" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestApproverMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/approvers/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestCollaboratorMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/collaborators/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecuritySubjectRightsRequestNote", + "ApiReferenceLink": null, + "Uri": "/security/subjectRightsRequests/{subjectRightsRequest-id}/notes/{authoredNote-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAuthoredNote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphAuthoredNote" }, { - "Uri": "/security/threatIntelligence", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligence", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityThreatIntelligence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityThreatIntelligence" }, { - "Uri": "/security/threatIntelligence/articles/{article-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceArticle", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articles/{article-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticle", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticle" }, { - "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceArticleIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/articleIndicators/{articleIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityArticleIndicator", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityArticleIndicator" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHost", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHost", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHost" }, { - "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostComponents/{hostComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostComponent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostComponent" }, { - "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostCookie", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostCookies/{hostCookie-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostCookie", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostCookie" }, { - "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostPair", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPairs/{hostPair-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPair", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPair" }, { - "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostPort", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostPorts/{hostPort-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostPort", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostPort" }, { - "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostReputation", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hosts/{host-id}/reputation", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostReputation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostReputation" }, { - "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostSslCertificates/{hostSslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostSslCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostSslCertificate" }, { - "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceHostTracker", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/hostTrackers/{hostTracker-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityHostTracker", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityHostTracker" }, { - "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceIntelProfile", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelProfiles/{intelligenceProfile-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfile" }, { - "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligencePassiveDnsRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/passiveDnsRecords/{passiveDnsRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityPassiveDnsRecord" }, { - "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceProfileIndicator", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/intelligenceProfileIndicators/{intelligenceProfileIndicator-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityIntelligenceProfileIndicator" }, { - "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceSslCertificate", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/sslCertificates/{sslCertificate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySslCertificate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySslCertificate" }, { - "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceSubdomain", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/subdomains/{subdomain-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecuritySubdomain", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecuritySubdomain" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceVulnerability", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerability", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerability" }, { - "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceVulnerabilityComponent", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/vulnerabilities/{vulnerability-id}/components/{vulnerabilityComponent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityVulnerabilityComponent" }, { - "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceWhoisHistoryRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisHistoryRecords/{whoisHistoryRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisHistoryRecord" }, { - "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityThreatIntelligenceWhoisRecord", + "ApiReferenceLink": null, + "Uri": "/security/threatIntelligence/whoisRecords/{whoisRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityWhoisRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityWhoisRecord" }, { - "Uri": "/security/triggers", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityTrigger", + "ApiReferenceLink": null, + "Uri": "/security/triggers", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityTriggersRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggersRoot" }, { - "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityTriggerRetentionEvent", + "ApiReferenceLink": null, + "Uri": "/security/triggers/retentionEvents/{retentionEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEvent" }, { - "Uri": "/security/triggerTypes", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityTriggerType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityTriggerTypesRoot" }, { - "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", - "Permissions": [], - "Module": "Security", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSecurityTriggerTypeRetentionEventType", + "ApiReferenceLink": null, + "Uri": "/security/triggerTypes/retentionEventTypes/{retentionEventType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSecurityRetentionEventType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Security", + "Permissions": [], + "OutputType": "IMicrosoftGraphSecurityRetentionEventType" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServiceAnnouncementHealthOverview", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealth", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealth" }, { - "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServiceAnnouncementHealthOverviewIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/healthOverviews/{serviceHealth-id}/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServiceAnnouncementIssue", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/issues/{serviceHealthIssue-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceHealthIssue", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceHealthIssue" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServiceAnnouncementMessage", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceUpdateMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceUpdateMessage" }, { - "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", - "Permissions": [], - "Module": "Devices.ServiceAnnouncement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServiceAnnouncementMessageAttachment", + "ApiReferenceLink": null, + "Uri": "/admin/serviceAnnouncement/messages/{serviceUpdateMessage-id}/attachments/{serviceAnnouncementAttachment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.ServiceAnnouncement", + "Permissions": [], + "OutputType": "IMicrosoftGraphServiceAnnouncementAttachment" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgServicePrincipal", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0", "Uri": "/servicePrincipals/{servicePrincipal-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Applications", "Permissions": [ { "Name": "Application.ReadWrite.OwnedBy", @@ -528857,392 +553827,406 @@ "IsLeastPrivilege": false } ], - "Module": "Applications", - "Command": "Update-MgServicePrincipal", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalAppRoleAssignedTo", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignedTo/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { - "Uri": "/servicePrincipals(appId='{appId}')", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalByAppId", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0", + "Uri": "/servicePrincipals(appId='{appId}')", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipal", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/serviceprincipal-upsert?view=graph-rest-1.0" + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipal" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalDelegatedPermissionClassification", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/delegatedPermissionClassifications/{delegatedPermissionClassification-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedPermissionClassification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedPermissionClassification" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalEndpoint", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/endpoints/{endpoint-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEndpoint", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphEndpoint" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalRemoteDesktopSecurityConfiguration", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphRemoteDesktopSecurityConfiguration" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalRemoteDesktopSecurityConfigurationTargetDeviceGroup", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/remoteDesktopSecurityConfiguration/targetDeviceGroups/{targetDeviceGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTargetDeviceGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphTargetDeviceGroup" }, { - "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalRiskDetection", + "ApiReferenceLink": null, + "Uri": "/identityProtection/servicePrincipalRiskDetections/{servicePrincipalRiskDetection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphServicePrincipalRiskDetection" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJob", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationJob", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationJob" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobBulkUpload", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/bulkUpload", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": null }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationJobSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/jobs/{synchronizationJob-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplate", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationTemplate", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationTemplate" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplateSchema", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSynchronizationSchema", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSynchronizationSchema" }, { - "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgServicePrincipalSynchronizationTemplateSchemaDirectory", + "ApiReferenceLink": null, + "Uri": "/servicePrincipals/{servicePrincipal-id}/synchronization/templates/{synchronizationTemplate-id}/schema/directories/{directoryDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDirectoryDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphDirectoryDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareList", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListContentType", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529253,16 +554237,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529273,16 +554258,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529293,16 +554279,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529313,16 +554300,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529333,16 +554321,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529353,16 +554342,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemVersion", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529373,16 +554363,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529393,157 +554384,177 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/shares/{sharedDriveItem-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListOperation", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareListSubscription", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/shares/{sharedDriveItem-id}/permission", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSharePermission", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}/permission", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/shares/{sharedDriveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgShareSharedDriveItemSharedDriveItem", + "ApiReferenceLink": null, + "Uri": "/shares/{sharedDriveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedDriveItem" }, { - "Uri": "/sites/{site-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSite", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSite", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSite" }, { - "Uri": "/sites/{site-id}/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteAnalyticItemActivityStatActivity", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/analytics/itemActivityStats/{itemActivityStat-id}/activities/{itemActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivity" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529562,21 +554573,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529595,21 +554607,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529628,40 +554641,32 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteContentTypeColumn", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteGetByPathAnalytic", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529672,16 +554677,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteGetByPathOnenote", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/onenote", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529692,16 +554698,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenote", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenote" }, { - "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteGetByPathTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/getByPath(path='{path}')/getByPath(path='{path1}')/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -529712,29 +554719,41 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/lists/{list-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteList", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteListColumn", + "ApiReferenceLink": null, "Uri": "/sites/{site-id}/lists/{list-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529753,21 +554772,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteListColumn", + "OutputType": "IMicrosoftGraphColumnDefinition" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteListContentType", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529786,21 +554806,22 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteListContentType", + "OutputType": "IMicrosoftGraphContentType" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgSiteListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "Module": "Sites", "Permissions": [ { "Name": "Sites.Manage.All", @@ -529819,600 +554840,627 @@ "IsLeastPrivilege": false } ], - "Module": "Sites", - "Command": "Update-MgSiteListContentTypeColumn", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItem", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemVersion", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteListSubscription", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/lists/{list-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgSiteOnenoteNotebookSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgSiteOnenoteNotebookSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/notebooks/{notebook-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteOnenotePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgSiteOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { - "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgSiteOnenoteSectionGroupSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sectionGroups/{sectionGroup-id}/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgSiteOnenoteSectionPageContent", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/onenote/sections/{onenoteSection-id}/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteOperation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePage", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphBaseSitePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphBaseSitePage" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayout", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCanvasLayout", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphCanvasLayout" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumn", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphHorizontalSectionColumn", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphHorizontalSectionColumn" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutHorizontalSectionColumnWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/horizontalSections/{horizontalSection-id}/columns/{horizontalSectionColumn-id}/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutVerticalSection", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVerticalSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphVerticalSection" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCanvaLayoutVerticalSectionWebpart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/canvasLayout/verticalSection/webparts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageAsSitePageWebPart", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/sitePage/webParts/{webPart-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": null }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePageLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/pages/{baseSitePage-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/sites/{site-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSitePermission", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/sites/{site-id}/termStore", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStore", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530423,16 +555471,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStore", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStore" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530443,16 +555492,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530463,16 +555513,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530491,16 +555542,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530519,16 +555571,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530539,16 +555592,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530559,16 +555613,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530579,16 +555634,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530599,16 +555655,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530619,16 +555676,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/groups/{group-id}/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530639,16 +555697,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530659,16 +555718,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530687,16 +555747,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530715,16 +555776,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroup", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530735,16 +555797,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreGroup" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSet", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530755,16 +555818,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreSet" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530783,16 +555847,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/children/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530811,16 +555876,17 @@ "UpdateViaIdentityExpanded2", "UpdateViaIdentityExpanded3" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530831,16 +555897,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530851,16 +555918,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530871,16 +555939,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530891,16 +555960,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetParentGroupSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/parentGroup/sets/{set-id1}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530911,16 +555981,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530931,16 +556002,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTerm", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530951,16 +556023,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermChild", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530971,16 +556044,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreTerm", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreTerm" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermChildRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/children/{term-id1}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -530991,16 +556065,17 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", - "Permissions": [], - "Module": "Sites", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSiteTermStoreSetTermRelation", + "ApiReferenceLink": null, + "Uri": "/sites/{site-id}/termStore/sets/{set-id}/terms/{term-id}/relations/{relation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -531011,45 +556086,58 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTermStoreRelation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Sites", + "Permissions": [], + "OutputType": "IMicrosoftGraphTermStoreRelation" }, { - "Uri": "/subscribedSkus/{subscribedSku-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSubscribedSku", + "ApiReferenceLink": null, + "Uri": "/subscribedSkus/{subscribedSku-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscribedSku", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscribedSku" }, { - "Uri": "/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "ChangeNotifications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgSubscription", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-1.0", + "Uri": "/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/subscription-update?view=graph-rest-1.0" + "Module": "ChangeNotifications", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeam", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-1.0", "Uri": "/teams/{team-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamSettings.ReadWrite.Group", @@ -531084,21 +556172,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeam", + "OutputType": "IMicrosoftGraphTeam" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeam", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/team-update?view=graph-rest-1.0" - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}", + "Module": "Teams", "Permissions": [ { "Name": "ChannelSettings.ReadWrite.Group", @@ -531133,21 +556222,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamChannel", + "OutputType": "IMicrosoftGraphChannel" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/teams/{team-id}/channels/{channel-id}/members/{conversationMember-id}", + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -531182,85 +556272,90 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamChannelMember", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeamChannelTab", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsTab.ReadWriteSelfForTeam", @@ -531327,21 +556422,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamChannelTab", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamsTab" }, { + "CommandAlias": null, + "Method": "POST", + "Command": "Update-MgTeamInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", "Uri": "/teams/{team-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "v1.0", + "Variants": [ + "Upgrade", + "UpgradeExpanded", + "UpgradeViaIdentity", + "UpgradeViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamsAppInstallation.ReadWriteSelfForTeam", @@ -531440,21 +556536,22 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamInstalledApp", - "Variants": [ - "Upgrade", - "UpgradeExpanded", - "UpgradeViaIdentity", - "UpgradeViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0" + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeamMember", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "ChannelMember.ReadWrite.All", @@ -531489,325 +556586,345 @@ "IsLeastPrivilege": false } ], - "Module": "Teams", - "Command": "Update-MgTeamMember", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamOperation", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/operations/{teamsAsyncOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAsyncOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAsyncOperation" }, { - "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/teams/{team-id}/photo", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPhoto", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/teams/{team-id}/primaryChannel", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannel", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamPrimaryChannelTab", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/primaryChannel/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleOfferShiftRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/offerShiftRequests/{offerShiftRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOfferShiftRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOfferShiftRequest" }, { - "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleOpenShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShifts/{openShift-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShift" }, { - "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleOpenShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/openShiftChangeRequests/{openShiftChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOpenShiftChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphOpenShiftChangeRequest" }, { - "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleSchedulingGroup", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/schedulingGroups/{schedulingGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSchedulingGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSchedulingGroup" }, { - "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleShift", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/shifts/{shift-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShift", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphShift" }, { - "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleSwapShiftChangeRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/swapShiftsChangeRequests/{swapShiftsChangeRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSwapShiftsChangeRequest" }, { - "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOff", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timesOff/{timeOff-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOff", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOff" }, { - "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOffReason", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffReasons/{timeOffReason-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffReason", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffReason" }, { - "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamScheduleTimeOffRequest", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/schedule/timeOffRequests/{timeOffRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTimeOffRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTimeOffRequest" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgTeamTag", + "ApiReferenceLink": null, "Uri": "/teams/{team-id}/tags/{teamworkTag-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Teams", "Permissions": [ { "Name": "TeamworkTag.ReadWrite", @@ -531826,367 +556943,390 @@ "IsLeastPrivilege": true } ], - "Module": "Teams", - "Command": "Update-MgTeamTag", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTag", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphTeamworkTag" }, { - "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamTagMember", + "ApiReferenceLink": null, + "Uri": "/teams/{team-id}/tags/{teamworkTag-id}/members/{teamworkTagMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamworkTagMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamworkTagMember" }, { - "Uri": "/teamwork", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamwork", + "ApiReferenceLink": null, + "Uri": "/teamwork", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamwork", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamwork" }, { - "Uri": "/teamwork/deletedChats/{deletedChat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedChat", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedChats/{deletedChat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": null }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeletedTeam", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeletedTeam" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannel", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChannel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChannel" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMember", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessage", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageReply", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelSharedWithTeam", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/sharedWithTeams/{sharedWithChannelTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphSharedWithChannelTeamInfo" }, { - "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkDeletedTeamChannelTab", + "ApiReferenceLink": null, + "Uri": "/teamwork/deletedTeams/{deletedTeam-id}/channels/{channel-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/teamwork/teamsAppSettings", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkTeamAppSetting", + "ApiReferenceLink": null, + "Uri": "/teamwork/teamsAppSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsAppSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsAppSettings" }, { - "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTeamworkWorkforceIntegration", + "ApiReferenceLink": null, + "Uri": "/teamwork/workforceIntegrations/{workforceIntegration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWorkforceIntegration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphWorkforceIntegration" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminCustomer", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminCustomer", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminCustomer" }, { - "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminCustomerServiceManagementDetail", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminCustomers/{delegatedAdminCustomer-id}/serviceManagementDetails/{delegatedAdminServiceManagementDetail-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminServiceManagementDetail" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationship", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationship", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationship" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipAccessAssignment", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/accessAssignments/{delegatedAdminAccessAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminAccessAssignment" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipOperation", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/operations/{delegatedAdminRelationshipOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipOperation" }, { - "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", - "Permissions": [], - "Module": "Identity.Partner", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipDelegatedAdminRelationshipRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/delegatedAdminRelationships/{delegatedAdminRelationship-id}/requests/{delegatedAdminRelationshipRequest-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.Partner", + "Permissions": [], + "OutputType": "IMicrosoftGraphDelegatedAdminRelationshipRequest" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipMultiTenantOrganizationJoinRequest", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/joinRequest", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationJoinRequestRecord" }, { - "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", - "Permissions": [], - "Module": "Identity.SignIns", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgTenantRelationshipMultiTenantOrganizationTenant", + "ApiReferenceLink": null, + "Uri": "/tenantRelationships/multiTenantOrganization/tenants/{multiTenantOrganizationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphMultiTenantOrganizationMember" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUser", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0", "Uri": "/users/{user-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Users", "Permissions": [ { "Name": "DeviceManagementApps.ReadWrite.All", @@ -532261,69 +557401,73 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Update-MgUser", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUser", - "Method": "PATCH", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-update?view=graph-rest-1.0" + "OutputType": "IMicrosoftGraphUser" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserActivity", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserActivity", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserActivity" }, { - "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", - "Permissions": [], - "Module": "CrossDeviceExperiences", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserActivityHistoryItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/activities/{userActivity-id}/historyItems/{activityHistoryItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphActivityHistoryItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CrossDeviceExperiences", + "Permissions": [], + "OutputType": "IMicrosoftGraphActivityHistoryItem" }, { - "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", - "Permissions": [], - "Module": "Applications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserAppRoleAssignment", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/appRoleAssignments/{appRoleAssignment-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAppRoleAssignment", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Applications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAppRoleAssignment" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserAuthenticationEmailMethod", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/authentication/emailMethods/{emailAuthenticationMethod-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -532342,53 +557486,56 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgUserAuthenticationEmailMethod", + "OutputType": "IMicrosoftGraphEmailAuthenticationMethod" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserAuthenticationMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEmailAuthenticationMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/authentication/methods/{authenticationMethod-id}", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "Update-MgUserAuthenticationMethod", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserAuthenticationOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.SignIns", + "Permissions": [], + "OutputType": "IMicrosoftGraphLongRunningOperation" }, { - "Uri": "/users/{user-id}/authentication/operations/{longRunningOperation-id}", - "Permissions": [], - "Module": "Identity.SignIns", - "Command": "Update-MgUserAuthenticationOperation", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserAuthenticationPhoneMethod", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/authentication/phoneMethods/{phoneAuthenticationMethod-id}", + "Module": "Identity.SignIns", "Permissions": [ { "Name": "UserAuthenticationMethod.ReadWrite.All", @@ -532407,40 +557554,32 @@ "IsLeastPrivilege": false } ], - "Module": "Identity.SignIns", - "Command": "Update-MgUserAuthenticationPhoneMethod", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphPhoneAuthenticationMethod" }, { - "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserCalendarGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendarGroups/{calendarGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarGroup" }, { - "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserCalendarPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/calendar/calendarPermissions/{calendarPermission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "Update1", @@ -532451,1773 +557590,1894 @@ "UpdateViaIdentityExpanded", "UpdateViaIdentityExpanded1" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCalendarPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphCalendarPermission" }, { - "Uri": "/users/{user-id}/chats/{chat-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChat" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgUserChatInstalledApp", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0", + "Uri": "/users/{user-id}/chats/{chat-id}/installedApps/{teamsAppInstallation-id}/upgrade", + "ApiVersion": "v1.0", "Variants": [ "Upgrade", "UpgradeExpanded", "UpgradeViaIdentity", "UpgradeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/chat-teamsappinstallation-upgrade?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatLastMessagePreview", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/lastMessagePreview", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatMember", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/members/{conversationMember-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphConversationMember", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphConversationMember" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatMessageHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatMessageReply", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessage" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatMessageReplyHostedContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/messages/{chatMessage-id}/replies/{chatMessage-id1}/hostedContents/{chatMessageHostedContent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChatMessageHostedContent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphChatMessageHostedContent" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatPermissionGrant", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/permissionGrants/{resourceSpecificPermissionGrant-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphResourceSpecificPermissionGrant" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatPinnedMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/pinnedMessages/{pinnedChatMessageInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPinnedChatMessageInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphPinnedChatMessageInfo" }, { - "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserChatTab", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/chats/{chat-id}/tabs/{teamsTab-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTeamsTab", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphTeamsTab" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContactFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContactFolder" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderChildFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/childFolders/{contactFolder-id1}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderContact", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContact", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphContact" }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderContactExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactFolderContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contactFolders/{contactFolder-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/contacts/{contact-id}/photo", - "Permissions": [], - "Module": "PersonalContacts", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserContactPhoto", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/contacts/{contact-id}/photo", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphProfilePhoto", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "PersonalContacts", + "Permissions": [], + "OutputType": "IMicrosoftGraphProfilePhoto" }, { - "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDeviceManagementTroubleshootingEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/deviceManagementTroubleshootingEvents/{deviceManagementTroubleshootingEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceManagementTroubleshootingEvent" }, { - "Uri": "/users/{user-id}/drives/{drive-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDrive", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDrive", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDrive" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/items/{driveItem-id}/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveList", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphList" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListContentType", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphContentType", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphContentType" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListContentTypeColumn", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columns/{columnDefinition-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnDefinition", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnDefinition" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListContentTypeColumnLink", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/contentTypes/{contentType-id}/columnLinks/{columnLink-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphColumnLink", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphColumnLink" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/items/{listItem-id}/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListOperation", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/operations/{richLongRunningOperation-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphRichLongRunningOperation", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphRichLongRunningOperation" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveListSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/list/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRoot", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootAnalytic", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemAnalytics", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemAnalytics" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootAnalyticItemActivityStat", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/analytics/itemActivityStats/{itemActivityStat-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemActivityStat", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemActivityStat" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItem" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemCreatedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/createdByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemDocumentSetVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDocumentSetVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDocumentSetVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemDocumentSetVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/documentSetVersions/{documentSetVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemLastModifiedByUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/lastModifiedByUser/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphListItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphListItemVersion" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootListItemVersionField", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/listItem/versions/{listItemVersion-id}/fields", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootPermission", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/permissions/{permission-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPermission", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphPermission" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootRetentionLabel", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/retentionLabel", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphItemRetentionLabel", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphItemRetentionLabel" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootSubscription", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/subscriptions/{subscription-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSubscription", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphSubscription" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootThumbnail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/thumbnails/{thumbnailSet-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphThumbnailSet", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphThumbnailSet" }, { - "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", - "Permissions": [], - "Module": "Files", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserDriveRootVersion", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/drives/{drive-id}/root/versions/{driveItemVersion-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDriveItemVersion", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Files", + "Permissions": [], + "OutputType": "IMicrosoftGraphDriveItemVersion" }, { - "Uri": "/users/{user-id}/events/{event-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserEvent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": "IMicrosoftGraphEvent" }, { - "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserEventExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", - "Permissions": [], - "Module": "Calendar", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserEventInstanceExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/events/{event-id}/instances/{event-id1}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Calendar", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/inferenceClassification", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserInferenceClassification", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassification", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassification" }, { - "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserInferenceClassificationOverride", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/inferenceClassification/overrides/{inferenceClassificationOverride-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphInferenceClassificationOverride", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphInferenceClassificationOverride" }, { - "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserLicenseDetail", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/licenseDetails/{licenseDetails-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLicenseDetails", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphLicenseDetails" }, { - "Uri": "/users/{user-id}/mailboxSettings", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailboxSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailboxSettings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailboxSettings", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailboxSettings" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolder", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMailFolder", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMailFolder" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderChildFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/childFolders/{mailFolder-id1}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMailFolderMessageRule", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/mailFolders/{mailFolder-id}/messageRules/{messageRule-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessageRule", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessageRule" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDevice", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphManagedDevice", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphManagedDevice" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCategory", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCategory" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceCompliancePolicyState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceCompliancePolicyStates/{deviceCompliancePolicyState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceCompliancePolicyState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceConfigurationState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/deviceConfigurationStates/{deviceConfigurationState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceConfigurationState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceConfigurationState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceLogCollectionResponse", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/logCollectionRequests/{deviceLogCollectionResponse-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphDeviceLogCollectionResponse" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgUserManagedDeviceWindowsDeviceAccount", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0", + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/updateWindowsDeviceAccount", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/intune-devices-manageddevice-updatewindowsdeviceaccount?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceWindowsProtectionState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsProtectionState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsProtectionState" }, { - "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", - "Permissions": [], - "Module": "Devices.CorporateManagement", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserManagedDeviceWindowsProtectionStateDetectedMalwareState", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/managedDevices/{managedDevice-id}/windowsProtectionState/detectedMalwareState/{windowsDeviceMalwareState-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Devices.CorporateManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsDeviceMalwareState" }, { - "Uri": "/users/{user-id}/messages/{message-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMessage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMessage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": "IMicrosoftGraphMessage" }, { - "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Mail", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserMessageExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/messages/{message-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Mail", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnenoteNotebook", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/notebooks/{notebook-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphNotebook", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphNotebook" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnenotePage", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenotePage", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenotePage" }, { - "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgUserOnenotePageContent", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/pages/{onenotePage-id}/onenotePatchContent", + "ApiVersion": "v1.0", "Variants": [ "Patch", "PatchExpanded", "PatchViaIdentity", "PatchViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": null + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnenoteSection", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sections/{onenoteSection-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnenoteSection", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphOnenoteSection" }, { - "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", - "Permissions": [], - "Module": "Notes", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnenoteSectionGroup", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onenote/sectionGroups/{sectionGroup-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphSectionGroup", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Notes", + "Permissions": [], + "OutputType": "IMicrosoftGraphSectionGroup" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserOnlineMeeting", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "CloudCommunications", "Permissions": [ { "Name": "OnlineMeetings.ReadWrite", @@ -534236,117 +559496,124 @@ "IsLeastPrivilege": true } ], - "Module": "CloudCommunications", - "Command": "Update-MgUserOnlineMeeting", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOnlineMeeting", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphOnlineMeeting" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingRecording", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/recordings/{callRecording-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallRecording", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallRecording" }, { - "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", - "Permissions": [], - "Module": "CloudCommunications", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOnlineMeetingTranscript", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/onlineMeetings/{onlineMeeting-id}/transcripts/{callTranscript-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphCallTranscript", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphCallTranscript" }, { - "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserOutlookMasterCategory", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/outlook/masterCategories/{outlookCategory-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphOutlookCategory", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphOutlookCategory" }, { - "Uri": "/users/{user-id}/changePassword", - "Permissions": [], - "Module": "Users.Actions", + "CommandAlias": null, + "Method": "POST", "Command": "Update-MgUserPassword", + "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-1.0", + "Uri": "/users/{user-id}/changePassword", + "ApiVersion": "v1.0", "Variants": [ "Change", "ChangeExpanded", "ChangeViaIdentity", "ChangeViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "POST", - "ApiReferenceLink": "https://learn.microsoft.com/graph/api/user-changepassword?view=graph-rest-1.0" + "Module": "Users.Actions", + "Permissions": [], + "OutputType": null }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserPlanner", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/planner", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Planner", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -534365,53 +559632,56 @@ "IsLeastPrivilege": false } ], - "Module": "Planner", - "Command": "Update-MgUserPlanner", + "OutputType": "IMicrosoftGraphPlannerUser" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserPresence", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/presence", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPlannerUser", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "CloudCommunications", + "Permissions": [], + "OutputType": "IMicrosoftGraphPresence" }, { - "Uri": "/users/{user-id}/presence", - "Permissions": [], - "Module": "CloudCommunications", - "Command": "Update-MgUserPresence", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserScopedRoleMemberOf", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphPresence", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Identity.DirectoryManagement", + "Permissions": [], + "OutputType": "IMicrosoftGraphScopedRoleMembership" }, { - "Uri": "/users/{user-id}/scopedRoleMemberOf/{scopedRoleMembership-id}", - "Permissions": [], - "Module": "Identity.DirectoryManagement", - "Command": "Update-MgUserScopedRoleMemberOf", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserSetting", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphScopedRoleMembership", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings", + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite", @@ -534430,21 +559700,22 @@ "IsLeastPrivilege": false } ], - "Module": "Users", - "Command": "Update-MgUserSetting", + "OutputType": "IMicrosoftGraphUserSettings" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserSettingShiftPreference", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/shiftPreferences", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserSettings", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/settings/shiftPreferences", + "Module": "Users", "Permissions": [ { "Name": "User.ReadWrite.All", @@ -534463,85 +559734,90 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserSettingShiftPreference", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphShiftPreferences", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphShiftPreferences" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserSettingWindows", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSetting", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSetting" }, { - "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", - "Permissions": [], - "Module": "Users", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserSettingWindowsInstance", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/settings/windows/{windowsSetting-id}/instances/{windowsSettingInstance-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphWindowsSettingInstance", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphWindowsSettingInstance" }, { - "Uri": "/users/{user-id}/teamwork", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserTeamwork", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphUserTeamwork", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphUserTeamwork" }, { - "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", - "Permissions": [], - "Module": "Teams", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgUserTeamworkAssociatedTeam", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/teamwork/associatedTeams/{associatedTeamInfo-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAssociatedTeamInfo", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Teams", + "Permissions": [], + "OutputType": "IMicrosoftGraphAssociatedTeamInfo" }, { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoList", + "ApiReferenceLink": null, "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}", + "ApiVersion": "v1.0", + "Variants": [ + "Update", + "UpdateExpanded", + "UpdateViaIdentity", + "UpdateViaIdentityExpanded" + ], + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -534560,37 +559836,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoList", + "OutputType": "IMicrosoftGraphTodoTaskList" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTaskList", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", - "Command": "Update-MgUserTodoListExtension", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListTask", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -534609,37 +559887,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoListTask", + "OutputType": "IMicrosoftGraphTodoTask" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListTaskAttachmentSession", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphTodoTask", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttachmentSession" }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/attachmentSessions/{attachmentSession-id}", - "Permissions": [], - "Module": "Users", - "Command": "Update-MgUserTodoListTaskAttachmentSession", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListTaskChecklistItem", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttachmentSession", - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/checklistItems/{checklistItem-id}", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -534658,37 +559938,39 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoListTaskChecklistItem", + "OutputType": "IMicrosoftGraphChecklistItem" + }, + { + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListTaskExtension", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphChecklistItem", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Users", + "Permissions": [], + "OutputType": null }, { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/extensions/{extension-id}", - "Permissions": [], - "Module": "Users", - "Command": "Update-MgUserTodoListTaskExtension", + "CommandAlias": null, + "Method": "PATCH", + "Command": "Update-MgUserTodoListTaskLinkedResource", + "ApiReferenceLink": null, + "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": null, - "Method": "PATCH", - "ApiReferenceLink": null - }, - { - "Uri": "/users/{user-id}/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}/linkedResources/{linkedResource-id}", + "Module": "Users", "Permissions": [ { "Name": "Tasks.ReadWrite", @@ -534707,161 +559989,159 @@ "IsLeastPrivilege": true } ], - "Module": "Users", - "Command": "Update-MgUserTodoListTaskLinkedResource", - "Variants": [ - "Update", - "UpdateExpanded", - "UpdateViaIdentity", - "UpdateViaIdentityExpanded" - ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphLinkedResource", - "Method": "PATCH", - "ApiReferenceLink": null + "OutputType": "IMicrosoftGraphLinkedResource" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEvent", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}", + "ApiVersion": "v1.0", "Variants": [ "Update1", "UpdateExpanded1", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEvent", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEvent" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/events/{virtualEvent-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventWebinar", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventWebinar", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventWebinar" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarRegistration", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/registrations/{virtualEventRegistration-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventRegistration", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventRegistration" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSession", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphVirtualEventSession", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphVirtualEventSession" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSessionAttendanceReport", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphMeetingAttendanceReport", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphMeetingAttendanceReport" }, { - "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", - "Permissions": [], - "Module": "Bookings", + "CommandAlias": null, + "Method": "PATCH", "Command": "Update-MgVirtualEventWebinarSessionAttendanceReportAttendanceRecord", + "ApiReferenceLink": null, + "Uri": "/solutions/virtualEvents/webinars/{virtualEventWebinar-id}/sessions/{virtualEventSession-id}/attendanceReports/{meetingAttendanceReport-id}/attendanceRecords/{attendanceRecord-id}", + "ApiVersion": "v1.0", "Variants": [ "Update", "UpdateExpanded", "UpdateViaIdentity", "UpdateViaIdentityExpanded" ], - "ApiVersion": "v1.0", - "OutputType": "IMicrosoftGraphAttendanceRecord", - "Method": "PATCH", - "ApiReferenceLink": null + "Module": "Bookings", + "Permissions": [], + "OutputType": "IMicrosoftGraphAttendanceRecord" } -] +] \ No newline at end of file diff --git a/src/Authentication/Authentication/test/BreakingChanges.Tests.ps1 b/src/Authentication/Authentication/test/BreakingChanges.Tests.ps1 new file mode 100644 index 0000000000..7cbf5e4c06 --- /dev/null +++ b/src/Authentication/Authentication/test/BreakingChanges.Tests.ps1 @@ -0,0 +1,31 @@ +Describe "Find-MgGraphCommand Command" { + BeforeAll { + . (join-path $PSScriptRoot ..\custom\Find-MgGraphCommand.ps1) + } + Describe "BreakingChanges" { + $CommandList = @() + $Reports = @() + $BreakingChangeReportV1Report = (Join-Path $PSScriptRoot "..\..\..\..\docs\PowerShellBreakingChanges-V1.0.csv") + $BreakingChangeReportBetaReport = (Join-Path $PSScriptRoot "..\..\..\..\docs\PowerShellBreakingChanges-Beta.csv") + $Reports += $BreakingChangeReportV1Report + $Reports += $BreakingChangeReportBetaReport + foreach ($BreakingChangeReport in $Reports) { + Import-Csv $BreakingChangeReport |` + ForEach-Object { + $CommandTable = @{ + } + $Command = $_."NewCmdlet" + $Alias = $_."OldCmdlet" + $CommandTable.Add("Command", $Command) + $CommandTable.Add("Alias", $Alias) + $CommandList += $CommandTable + } + It "Returns ()" -ForEach $CommandList { + $MgCommand = Find-MgGraphCommand -Command "$Command" + $MgCommand[0].Command | Select-Object -Unique | Should -Be "$Command" + $MgCommand[0].CommandAlias | Select-Object -Unique | Should -Be "$Alias" + } + } + } + +} \ No newline at end of file diff --git a/src/CrossDeviceExperiences/CrossDeviceExperiences.md b/src/CrossDeviceExperiences/CrossDeviceExperiences.md index 3c47040497..a966f8dc01 100644 --- a/src/CrossDeviceExperiences/CrossDeviceExperiences.md +++ b/src/CrossDeviceExperiences/CrossDeviceExperiences.md @@ -17,4 +17,7 @@ require: ``` yaml # Directives go here! +directive: +#Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. + - remove-path-by-operation: ^user.device_DeleteRegisteredOwnerGraphBPreRef$|^user.device_DeleteRegisteredUserGraphBPreRef$ ``` diff --git a/src/Education/Education.md b/src/Education/Education.md index ff92932c18..f288b262a0 100644 --- a/src/Education/Education.md +++ b/src/Education/Education.md @@ -17,4 +17,7 @@ require: ``` yaml # Directives go here! +directive: +#Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. + - remove-path-by-operation: ^education.class.assignment_DeleteCategoryGraphBPreRef$|^education.class_DeleteMemberGraphBPreRef$|^education.class_DeleteTeacherGraphBPreRef$|^education.me.assignment_DeleteCategoryGraphBPreRef$|^education.school_DeleteClassGraphBPreRef$|^education.school_DeleteUserGraphBPreRef$|^education.user.assignment_DeleteCategoryGraphBPreRef$ ``` diff --git a/src/Groups/Groups.md b/src/Groups/Groups.md index f00f76bf29..b5c09560ca 100644 --- a/src/Groups/Groups.md +++ b/src/Groups/Groups.md @@ -17,7 +17,8 @@ require: ``` yaml directive: - - remove-path-by-operation: group\.groupLifecyclePolicy_.*$|group_(Get|Create|Update|Delete)GroupLifecyclePolicies$|group\.team.*$|user\.joinedGroup.*$|group\.site\.onenote.*$|.*\.onenote\..*parent.*|.*\.calendarView.*|.*\.notebook\.section.*|.*\.sectionGroup\.section.*|.*\.section\.page.*|.*\.calendar\.event\..*$|.*\.event\..*$ +#Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. The affected operation Ids starts from group_DeleteAcceptedSenderGraphBPreRef + - remove-path-by-operation: group\.groupLifecyclePolicy_.*$|group_(Get|Create|Update|Delete)GroupLifecyclePolicies$|group\.team.*$|user\.joinedGroup.*$|group\.site\.onenote.*$|.*\.onenote\..*parent.*|.*\.calendarView.*|.*\.notebook\.section.*|.*\.sectionGroup\.section.*|.*\.section\.page.*|.*\.calendar\.event\..*$|.*\.event\..*$|^group_DeleteAcceptedSenderGraphBPreRef$|^group_DeleteMemberGraphBPreRef$|^group_DeleteOwnerGraphBPreRef$|^group_DeleteOwnerGraphBPreRef$|^group_DeleteRejectedSenderGraphBPreRef$ - where: verb: Get subject: ^(GroupLifecyclePolicy)$ diff --git a/src/Identity.DirectoryManagement/Identity.DirectoryManagement.md b/src/Identity.DirectoryManagement/Identity.DirectoryManagement.md index 0a277338c8..29d5b4a02a 100644 --- a/src/Identity.DirectoryManagement/Identity.DirectoryManagement.md +++ b/src/Identity.DirectoryManagement/Identity.DirectoryManagement.md @@ -58,4 +58,6 @@ directive: subject: ^(DirectoryDeleted)(application|administrativeUnit|appRoleAssignment|directoryObject|directoryRole|device|group|orgContact|servicePrincipal|user)$ set: subject: $1ItemAs$2 +##Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. + - remove-path-by-operation: ^device_DeleteRegisteredOwnerGraphBPreRef$|^device_DeleteRegisteredUserGraphBPreRef$|^directory.administrativeUnit_DeleteMemberGraphBPreRef$|^directoryRole_DeleteMemberGraphBPreRef$|^directory.featureRolloutPolicy_ListAppliesToGraphBPreRef$ ``` diff --git a/src/Identity.Governance/Identity.Governance.md b/src/Identity.Governance/Identity.Governance.md index 2321d79b20..c862ec0835 100644 --- a/src/Identity.Governance/Identity.Governance.md +++ b/src/Identity.Governance/Identity.Governance.md @@ -17,7 +17,8 @@ require: ``` yaml directive: - - remove-path-by-operation: ^identityGovernance_(Get|Create|Update|Set|Delete)EntitlementManagement$|^identityGovernance\.entitlementManagement(_.*AccessPackageResourceRoleScope|\.accessPackageResourceRoleScope.*|\.accessPackageAssignmentPolicy\..*|\.accessPackageAssignmentRequest\..*|\.accessPackageAssignmentResourceRole\..*|\.accessPackageAssignment\..*|\.accessPackageCatalog\..*|\.accessPackageResourceRequest\..*|\.accessPackageResource\..*|\.accessPackage\..*)|^identityGovernance\.accessReview\.definition\.instance\.decision\.instance(\.|_).*|^identityGovernance\.accessReview\.definition\.instance\.stage\.decision\..*$|^privilegedAccess.roleAssignmentRequest.(resource|roleDefinition).*$|^privilegedAccess.roleAssignment.(resource|roleDefinition).*$|^privilegedAccess.roleDefinition.(resource|roleSetting).*$|^privilegedAccess.roleSetting.(resource|roleDefinition).*$|^identityGovernance_.*LifecycleWorkflow|^identityGovernance\.lifecycleWorkflow\.deletedItem\.(workflow|run|userProcessingResult)\..*|^identityGovernance\.lifecycleWorkflow\.workflow\.run\.userProcessingResult\.taskProcessingResult.*|^identityGovernance\.lifecycleWorkflow\.workflow\.userProcessingResult\.taskProcessingResult.*|^identityGovernance_.*RoleManagementAlert$|^identityGovernance\.roleManagementAlert_refresh$|^identityGovernance\.entitlementManagement\.resourceRoleScope_.*Scope$ +#Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. The affected operation Ids starts from connectedOrganization_DeleteExternalSponsorGraphBPreRef$ + - remove-path-by-operation: ^identityGovernance_(Get|Create|Update|Set|Delete)EntitlementManagement$|^identityGovernance\.entitlementManagement(_.*AccessPackageResourceRoleScope|\.accessPackageResourceRoleScope.*|\.accessPackageAssignmentPolicy\..*|\.accessPackageAssignmentRequest\..*|\.accessPackageAssignmentResourceRole\..*|\.accessPackageAssignment\..*|\.accessPackageCatalog\..*|\.accessPackageResourceRequest\..*|\.accessPackageResource\..*|\.accessPackage\..*)|^identityGovernance\.accessReview\.definition\.instance\.decision\.instance(\.|_).*|^identityGovernance\.accessReview\.definition\.instance\.stage\.decision\..*$|^privilegedAccess.roleAssignmentRequest.(resource|roleDefinition).*$|^privilegedAccess.roleAssignment.(resource|roleDefinition).*$|^privilegedAccess.roleDefinition.(resource|roleSetting).*$|^privilegedAccess.roleSetting.(resource|roleDefinition).*$|^identityGovernance_.*LifecycleWorkflow|^identityGovernance\.lifecycleWorkflow\.deletedItem\.(workflow|run|userProcessingResult)\..*|^identityGovernance\.lifecycleWorkflow\.workflow\.run\.userProcessingResult\.taskProcessingResult.*|^identityGovernance\.lifecycleWorkflow\.workflow\.userProcessingResult\.taskProcessingResult.*|^identityGovernance_.*RoleManagementAlert$|^identityGovernance\.roleManagementAlert_refresh$|^identityGovernance\.entitlementManagement\.resourceRoleScope_.*Scope$|^identityGovernance.entitlementManagement.connectedOrganization_DeleteExternalSponsorGraphBPreRef$|^identityGovernance.entitlementManagement.connectedOrganization_DeleteInternalSponsorGraphBPreRef$ # Remove cmdlets - where: verb: Get|Remove|Set diff --git a/src/Identity.SignIns/Identity.SignIns.md b/src/Identity.SignIns/Identity.SignIns.md index e5145a14de..c5bb55c288 100644 --- a/src/Identity.SignIns/Identity.SignIns.md +++ b/src/Identity.SignIns/Identity.SignIns.md @@ -17,7 +17,8 @@ require: ``` yaml directive: - - remove-path-by-operation: ^identity_(Get|Create|Delete|Update|List)ConditionalAcces$|^policy\.policyRoot_.*PolicyRoot|^policy_(Get|Create|Delete|Update|List)ConditionalAccessPolicy$|^invitation\.invitation_(List|Get|Update|Delete)Invitation$|^invitation_(.*)InvitedUser$|^identityProtection\.identityProtectionRoot_(.*)$|^identity\.identityContainer_(.*)$|^identityProvider(\.identityProvider.*|_.*)$ +#Prevent cmdlets with the below operation Ids from being generated to allow for aliasing as a result of breaking changes in 2.18.0 and 2.17.0. The affected operation Ids starts from identity.b2xUserFlow_DeleteUserFlowIdentityProviderGraphBPreRef + - remove-path-by-operation: ^identity_(Get|Create|Delete|Update|List)ConditionalAcces$|^policy\.policyRoot_.*PolicyRoot|^policy_(Get|Create|Delete|Update|List)ConditionalAccessPolicy$|^invitation\.invitation_(List|Get|Update|Delete)Invitation$|^invitation_(.*)InvitedUser$|^identityProtection\.identityProtectionRoot_(.*)$|^identity\.identityContainer_(.*)$|^identityProvider(\.identityProvider.*|_.*)$|^identity.b2xUserFlow_DeleteUserFlowIdentityProviderGraphBPreRef$|^policy.featureRolloutPolicy_DeleteAppliesToGraphBPreRef$ # Remove cmdlets - where: subject: ^(Oauth2PermissionGrant)(\1)+ diff --git a/src/readme.graph.md b/src/readme.graph.md index 2c2840971d..88aa90bebd 100644 --- a/src/readme.graph.md +++ b/src/readme.graph.md @@ -663,4 +663,181 @@ directive: $ = $.replace(systemRegex, '_System$1'); return $; } +#The below aliases are added to enable backward compatibility due to the breaking changes introduced in v2.17.0 and v2.18.0 + - where: + verb: Remove + subject: ApplicationAppManagementPolicyAppManagementPolicyByRef + set: + alias: ${verb}-Mg${subject-prefix}ApplicationAppManagementPolicyByRef + - where: + verb: Remove + subject: ApplicationOwnerDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}ApplicationOwnerByRef + - where: + verb: Remove + subject: ApplicationTokenIssuancePolicyTokenIssuancePolicyByRef + set: + alias: ${verb}-Mg${subject-prefix}ApplicationTokenIssuancePolicyByRef + - where: + verb: Remove + subject: ApplicationTokenLifetimePolicyTokenLifetimePolicyByRef + set: + alias: ${verb}-Mg${subject-prefix}ApplicationTokenLifetimePolicyByRef + - where: + verb: Remove + subject: DeviceRegisteredOwnerDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}DeviceRegisteredOwnerByRef + - where: + verb: Remove + subject: DeviceRegisteredUserDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}DeviceRegisteredUserByRef + - where: + verb: Remove + subject: DirectoryAdministrativeUnitMemberDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}DirectoryAdministrativeUnitMemberByRef + - where: + verb: Remove + subject: DirectoryRoleMemberDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}DirectoryRoleMemberByRef + - where: + verb: Remove + subject: EducationClassAssignmentCategoryEducationCategoryByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationClassAssignmentCategoryByRef + - where: + verb: Remove + subject: EducationClassMemberEducationUserByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationClassMemberByRef + - where: + verb: Remove + subject: EducationClassTeacherEducationUserByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationClassTeacherByRef + - where: + verb: Remove + subject: EducationMeAssignmentCategoryEducationCategoryByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationMeAssignmentCategoryByRef + - where: + verb: Remove + subject: EducationSchoolClassEducationClassByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationSchoolClassByRef + - where: + verb: Remove + subject: EducationSchoolUserEducationUserByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationSchoolUserByRef + - where: + verb: Remove + subject: EducationUserAssignmentCategoryEducationCategoryByRef + set: + alias: ${verb}-Mg${subject-prefix}EducationUserAssignmentCategoryByRef + - where: + verb: Remove + subject: GroupAcceptedSenderDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}GroupAcceptedSenderByRef + - where: + verb: Remove + subject: GroupMemberDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}GroupMemberByRef + - where: + verb: Remove + subject: GroupOwnerDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}GroupOwnerByRef + - where: + verb: Remove + subject: GroupRejectedSenderDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}GroupRejectedSenderByRef + - where: + verb: Remove + subject: IdentityB2XUserFlowIdentityProviderBaseByRef + set: + alias: ${verb}-Mg${subject-prefix}IdentityB2XUserFlowIdentityProviderByRef + - where: + verb: Remove + subject: EntitlementManagementConnectedOrganizationExternalSponsorDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}EntitlementManagementConnectedOrganizationExternalSponsorByRef + - where: + verb: Remove + subject: EntitlementManagementConnectedOrganizationInternalSponsorDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}EntitlementManagementConnectedOrganizationInternalSponsorByRef + - where: + verb: Remove + subject: PolicyFeatureRolloutPolicyApplyToDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}PolicyFeatureRolloutPolicyApplyToByRef + - where: + verb: Remove + subject: ServicePrincipalClaimMappingPolicyClaimMappingPolicyByRef + set: + alias: ${verb}-Mg${subject-prefix}ServicePrincipalClaimMappingPolicyByRef + - where: + verb: Remove + subject: ServicePrincipalHomeRealmDiscoveryPolicyHomeRealmDiscoveryPolicyByRef + set: + alias: ${verb}-Mg${subject-prefix}ServicePrincipalHomeRealmDiscoveryPolicyByRef + - where: + verb: Remove + subject: ServicePrincipalOwnerDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}ServicePrincipalOwnerByRef + - where: + verb: Remove + subject: AdministrativeUnitMemberDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}AdministrativeUnitMemberByRef + - where: + verb: Remove + subject: DirectoryFeatureRolloutPolicyApplyToDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}DirectoryFeatureRolloutPolicyApplyToByRef + - where: + verb: Remove + subject: OnPremisePublishingProfileAgentGroupOnPremiseAgentGroupByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfileAgentGroupByRef + - where: + verb: Remove + subject: OnPremisePublishingProfileConnectorGroupMemberConnectorByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfileConnectorGroupMemberByRef + - where: + verb: Remove + subject: OnPremisePublishingProfileConnectorMemberOfConnectorGroupByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfileConnectorMemberOfByRef + - where: + verb: Remove + subject: OnPremisePublishingProfilePublishedResourceAgentGroupOnPremiseAgentGroupByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfilePublishedResourceAgentGroupByRef + - where: + verb: Remove + subject: UserDeviceRegisteredOwnerDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}UserDeviceRegisteredOwnerByRef + - where: + verb: Remove + subject: UserDeviceRegisteredUserDirectoryObjectByRef + set: + alias: ${verb}-Mg${subject-prefix}UserDeviceRegisteredUserByRef + - where: + verb: Remove + subject: OnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupOnPremiseAgentGroupByRef + set: + alias: ${verb}-Mg${subject-prefix}OnPremisePublishingProfileAgentGroupPublishedResourceAgentGroupByRef + ``` diff --git a/tools/PostGeneration/NewCommandMetadata.ps1 b/tools/PostGeneration/NewCommandMetadata.ps1 index 6711fb39d9..429cdf78d2 100644 --- a/tools/PostGeneration/NewCommandMetadata.ps1 +++ b/tools/PostGeneration/NewCommandMetadata.ps1 @@ -35,7 +35,8 @@ $CommandPathMapping = [ordered]@{} # Regex patterns. $OpenApiTagPattern = '\[OpenAPI\].s*(.*)=>(.*):\"(.*)\"' -$ExternalDocsPattern ='https://learn.microsoft.com/graph/api/(.*?(graph-rest-1.0|graph-rest-beta))' +$ExternalDocsPattern = 'https://learn.microsoft.com/graph/api/(.*?(graph-rest-1.0|graph-rest-beta))' +$AliasPattern = '\[global::System.Management.Automation.Alias(.*?)\]' $ActionFunctionFQNPattern = "\/Microsoft.Graph.(.*)$" $PermissionsUrl = "https://graphexplorerapi.azurewebsites.net/permissions" @@ -73,16 +74,24 @@ $ApiVersion | ForEach-Object { } $Uri = $Uri -replace [Regex]::Escape($MatchedUriSegment), $SegmentBuilder } + $CommandAliasValue = ($RawFileContent -match $AliasPattern) ? $Matches.0 : $null + if (-not($Null -eq $CommandAliasValue)) { + $CommandAliasValue = $CommandAliasValue.Replace("[global::System.Management.Automation.Alias(`"", "").Replace("`")", "").Replace("]", "") + } + if(-not($CommandAliasValue -contains "-Mg")) { + $CommandAliasValue = $null + } $MappingValue = @{ - Command = $CommandName - Variants = [System.Collections.ArrayList]@($VariantName) - Method = $Method - Uri = $Uri - ApiVersion = $CurrentApiVersion - OutputType = ($RawFileContent -match $OutputTypePattern) ? $Matches.1 : $null - Module = $ModuleName + Command = $CommandName + Variants = [System.Collections.ArrayList]@($VariantName) + Method = $Method + Uri = $Uri + ApiVersion = $CurrentApiVersion + OutputType = ($RawFileContent -match $OutputTypePattern) ? $Matches.1 : $null + Module = $ModuleName ApiReferenceLink = ($RawFileContent -match $ExternalDocsPattern) ? $Matches.0 : $null - Permissions = @() + CommandAlias = $CommandAliasValue + Permissions = @() } # Disambiguate between /users (Get-MgUser) and /users/{id} (Get-MgUser) by variant name (parameterset) i.e., List and Get. @@ -118,6 +127,7 @@ $ApiVersion | ForEach-Object { } $CommandPathMapping.Add($CommandMappingKey, $MappingValue) } + } else { Write-Error "No match for $OpenApiTagPattern"